projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
920f5c4
)
'MyStreamListener' object is not callable"
author
Or Arbel
<orarbel@gmail.com>
Wed, 20 Jan 2016 03:19:51 +0000
(19:19 -0800)
committer
Or Arbel
<orarbel@gmail.com>
Wed, 20 Jan 2016 03:19:51 +0000
(19:19 -0800)
Fix for "TypeError: 'MyStreamListener' object is not callable"
docs/streaming_how_to.rst
patch
|
blob
|
blame
|
history
diff --git
a/docs/streaming_how_to.rst
b/docs/streaming_how_to.rst
index a2bd43d4ad7b393ca2fd64af2c91def54efc4785..b3b5debed9de9276e868a50f30108df8b0da6ba9 100644
(file)
--- a/
docs/streaming_how_to.rst
+++ b/
docs/streaming_how_to.rst
@@
-66,7
+66,7
@@
We need an api to stream. See :ref:`auth_tutorial` to learn how to get an api ob
Once we have an api and a status listener we can create our stream object.::
myStreamListener = MyStreamListener()
- myStream = tweepy.Stream(auth = api.auth, listener=myStreamListener
()
)
+ myStream = tweepy.Stream(auth = api.auth, listener=myStreamListener)
Step 3: Starting a Stream
=========================