2.1.0 Release

Set `self.auth` = None so that calls (like searching or getting a
profile avatar don't error out) Fixes 90
This commit is contained in:
Michael Helmick 2012-05-17 12:22:37 -04:00
parent 32a83a6b79
commit d93b48cded

View file

@ -145,6 +145,7 @@ class Twython(object):
self.headers = {'User-agent': 'Twython Python Twitter Library v' + __version__}
self.client = None
self.auth = None
if self.app_key is not None and self.app_secret is not None:
self.auth = OAuth1(self.app_key, self.app_secret,