From 814b5a6a6f9a65ad40b7400774b486a230b7fb4c Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Fri, 21 Feb 2014 23:14:08 -0500 Subject: [PATCH] Clean up OAuthHandler variables --- tweepy/auth.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tweepy/auth.py b/tweepy/auth.py index 34a488d..439a690 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -35,10 +35,10 @@ class OAuthHandler(AuthHandler): if type(consumer_secret) == unicode: consumer_secret = bytes(consumer_secret) - self._consumer = oauth.OAuthConsumer(consumer_key, consumer_secret) - self._sigmethod = oauth.OAuthSignatureMethod_HMAC_SHA1() - self.request_token = None + self.consumer_key = consumer_key + self.consumer_secret = consumer_secret self.access_token = None + self.access_token_secret = None self.callback = callback self.username = None self.secure = secure -- 2.25.1