From 72fc9c8ef5ed5dd4ed7fde50a7c19e8f951bd3fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Tue, 1 Feb 2011 14:36:29 -0200 Subject: [PATCH] Shorter comment line --- social_auth/backends/facebook.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/social_auth/backends/facebook.py b/social_auth/backends/facebook.py index 4d19159..b397b57 100644 --- a/social_auth/backends/facebook.py +++ b/social_auth/backends/facebook.py @@ -64,7 +64,8 @@ class FacebookAuth(BaseOAuth): error = self.data.get('error') or 'unknown error' raise ValueError('Authentication error: %s' % error) data['access_token'] = access_token - #expires will not be part of response if offline access premission was requested + # expires will not be part of response if offline access + # premission was requested if 'expires' in response: data['expires'] = response['expires'][0] kwargs.update({'response': data, FacebookBackend.name: True}) -- 2.39.5