From 5f2f835cf44a94303151ed159f51fb0527e3af09 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Tue, 15 Mar 2011 20:49:20 -0300 Subject: [PATCH] Removed unneeded var --- social_auth/backends/google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5