From: Josh Roesslein Date: Tue, 18 Aug 2009 20:46:29 +0000 (-0500) Subject: Fix a typo. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=50008ba4bdd351f710f0ad64d7393b14c76045b1;p=tweepy.git Fix a typo. --- diff --git a/tweepy/auth.py b/tweepy/auth.py index 86dcdc1..655c493 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -30,8 +30,8 @@ class OAuthHandler(AuthHandler): AUTHORIZATION_URL = 'http://twitter.com/oauth/authorize' ACCESS_TOKEN_URL = 'http://twitter.com/oauth/access_token' - def __init__(self, consumer_key, consumer_secrete, callback=None): - self._consumer = oauth.OAuthConsumer(consumer_key, consumer_secrete) + def __init__(self, consumer_key, consumer_secret, callback=None): + self._consumer = oauth.OAuthConsumer(consumer_key, consumer_secret) self._sigmethod = oauth.OAuthSignatureMethod_HMAC_SHA1() self.request_token = None self.access_token = None