From: Matías Aguirre Date: Tue, 15 Mar 2011 23:49:20 +0000 (-0300) Subject: Removed unneeded var X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5f2f835cf44a94303151ed159f51fb0527e3af09;p=django-social-auth.git Removed unneeded var --- diff --git a/social_auth/backends/google.py b/social_auth/backends/google.py index 82121e6..9210f54 100644 --- a/social_auth/backends/google.py +++ b/social_auth/backends/google.py @@ -167,7 +167,7 @@ def googleapis_email(url, params): request = Request(url + '?' + params, headers={'Authorization': params}) try: return simplejson.loads(urlopen(request).read())['data'] - except (simplejson.JSONDecodeError, KeyError, IOError), e: + except (simplejson.JSONDecodeError, KeyError, IOError): return None