From 1d8f2a885156c8a2ef3466a0605937aec9f90a31 Mon Sep 17 00:00:00 2001 From: kracekumar Date: Wed, 5 Oct 2011 08:04:44 +0530 Subject: [PATCH] fixed typo --- twython/twython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twython/twython.py b/twython/twython.py index 7e7c1a9..bc77526 100644 --- a/twython/twython.py +++ b/twython/twython.py @@ -349,7 +349,7 @@ class Twython(object): kwargs['page'] += 1 kwargs['page'] = str(kwargs['page']) except TypeError: - raise TwythonError("searchGen() exited because page takes int") + raise TwythonError("searchGen() exited because page takes str") except e: raise TwythonError("searchGen() failed with %s error code" %\ `e.code`, e.code)