From: Michael Saunby Date: Tue, 24 Nov 2015 10:57:42 +0000 (+0000) Subject: Correct typo at line 69 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ed5d67012972fea755f3712f6573ca9047b6127d;p=tweepy.git Correct typo at line 69 --- diff --git a/docs/streaming_how_to.rst b/docs/streaming_how_to.rst index a2bd43d..b3b5deb 100644 --- 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 =========================