diff --git a/examples/search_results.py b/examples/search_results.py index 8c4737a..9984139 100644 --- a/examples/search_results.py +++ b/examples/search_results.py @@ -3,7 +3,7 @@ from twython import Twython, TwythonError # Requires Authentication as of Twitter API v1.1 twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) try: - search_results = twitter.search(q='WebsDotCom', rpp='50') + search_results = twitter.search(q='WebsDotCom', count=50) except TwythonError as e: print e