Fix typo in cursor example

This commit is contained in:
Clayton A Davis 2017-10-18 14:01:34 -04:00
parent 1dcd9cc26e
commit 0f64978a08

View file

@ -45,7 +45,7 @@ Another example:
.. code-block:: python
results = twitter.cursor(t.get_mentions_timeline)
results = twitter.cursor(twitter.get_mentions_timeline)
for result in results:
print(result['id_str'])