diff --git a/twython/twython.py b/twython/twython.py index ec40cf2..2c643be 100644 --- a/twython/twython.py +++ b/twython/twython.py @@ -367,7 +367,6 @@ class Twython(object): Pass in the API supported arguments as named parameters. e.g x.search(q = "python", page = '2') - e.g x.search("python", page = '2') """ searchURL = Twython.constructApiURL("\ http://search.twitter.com/search.json", kwargs) diff --git a/twython3k/twython.py b/twython3k/twython.py index 3bf6b3c..45a32df 100644 --- a/twython3k/twython.py +++ b/twython3k/twython.py @@ -300,7 +300,7 @@ class Twython(object): def searchTwitter(self, **kwargs): """use search(search_query, **kwargs) - searchTwitter("python", page = "2")""" + searchTwitter(q = "python", page = "2")""" return search(self, **kwargs) def searchGen(self, search_query, **kwargs):