Fix a typo.
authorJosh Roesslein <jroesslein@gmail.com>
Tue, 18 Aug 2009 20:46:29 +0000 (15:46 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Tue, 18 Aug 2009 20:46:29 +0000 (15:46 -0500)
tweepy/auth.py

index 86dcdc1567992b54267d29b6a5b79e917c2522ed..655c49341a924234e7c96228c9452db063cad0fd 100644 (file)
@@ -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