From 7b1e12e7d8ba8350c536d7ed60f14752c3c09b14 Mon Sep 17 00:00:00 2001 From: Aymeric Derbois Date: Wed, 4 Nov 2015 21:30:42 +0100 Subject: [PATCH] Fix duplicate raise in auth.py --- tweepy/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tweepy/auth.py b/tweepy/auth.py index b15434b..6ec9af3 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -85,7 +85,6 @@ class OAuthHandler(AuthHandler): self.request_token = self._get_request_token(access_type=access_type) return self.oauth.authorization_url(url) except Exception as e: - raise raise TweepError(e) def get_access_token(self, verifier=None): -- 2.25.1