From: Matheus Hernandes Date: Mon, 7 Jan 2019 00:39:28 +0000 (-0200) Subject: fix request_token X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3836d4f58d30555456037f2337c6fa7ce3c13ae2;p=tweepy.git fix request_token --- diff --git a/tweepy/auth.py b/tweepy/auth.py index c157ad8..00559fb 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -44,6 +44,7 @@ class OAuthHandler(AuthHandler): self.access_token_secret = None self.callback = callback self.username = None + self.request_token = {} self.oauth = OAuth1Session(consumer_key, client_secret=consumer_secret, callback_uri=self.callback)