Skip to content

Commit

Permalink
Merge pull request #667 from aymericderbois/master
Browse files Browse the repository at this point in the history
Fix duplicate raise in auth.py
  • Loading branch information
joshthecoder committed Nov 5, 2015
2 parents 70c1c6b + 7b1e12e commit 8cc647f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tweepy/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def get_authorization_url(self,
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):
Expand Down

0 comments on commit 8cc647f

Please sign in to comment.