diff options
Diffstat (limited to 'python-tornado/examples')
| -rw-r--r-- | python-tornado/examples/here-now-example.py | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/python-tornado/examples/here-now-example.py b/python-tornado/examples/here-now-example.py index e6e45a3..6e69d53 100644 --- a/python-tornado/examples/here-now-example.py +++ b/python-tornado/examples/here-now-example.py @@ -10,7 +10,6 @@  ## -----------------------------------  import sys -import tornado  sys.path.append('..')  sys.path.append('../../common')  from Pubnub import Pubnub @@ -34,12 +33,11 @@ crazy = 'hello_world'  def here_now_complete(messages):      print(messages) +    print(type(messages))      pubnub.stop() -pubnub.here_now({ -    'channel': crazy, -    'callback': here_now_complete -}) +pubnub.here_now( +    channel=crazy, callback=here_now_complete, error=here_now_complete)  ## -----------------------------------------------------------------------  ## IO Event Loop | 
