Skip to content

Commit

Permalink
py3 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Sep 8, 2014
1 parent 2713b63 commit 65aa5d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ def pubsub():
client = tornadis.Client()
yield client.connect()
reply = yield client.call("PSUBSCRIBE", "*")
print reply
print(reply)
while True:
reply = yield client.pop_message()
print reply
print(reply)


def stop_loop(future):
Expand Down

0 comments on commit 65aa5d2

Please sign in to comment.