From f65e9dcfeb3c3c7b07350c0dae8b676c5c41450a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Code=C3=A7o=20Coelho?= Date: Thu, 18 Feb 2016 17:36:30 -0200 Subject: [PATCH] fix the last print for compatibility with python 3 --- scripts/bitfinex-poll-orderbook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bitfinex-poll-orderbook b/scripts/bitfinex-poll-orderbook index cf715d5..3e20cb6 100755 --- a/scripts/bitfinex-poll-orderbook +++ b/scripts/bitfinex-poll-orderbook @@ -39,4 +39,4 @@ while True: print("") print("%s %s" % ("## ", order_type)) for order in orders[order_type]: - print order + print (order)