From 50008ba4bdd351f710f0ad64d7393b14c76045b1 Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Tue, 18 Aug 2009 15:46:29 -0500 Subject: [PATCH] Fix a typo. --- tweepy/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.1