Fix #93 is incorrect. We can avoid this by just removing the check and
quote_plus
This commit is contained in:
Mike Helmick 2012-06-28 11:08:59 -04:00
parent dfdbbec5a8
commit a9b7b836c9

View file

@ -366,8 +366,6 @@ class Twython(object):
e.g x.search(q='jjndf', page='2')
"""
if 'q' in kwargs:
kwargs['q'] = urllib.quote_plus(Twython.unicode2utf8(kwargs['q'], ':'))
return self.get('https://search.twitter.com/search.json', params=kwargs)