From: Matías Aguirre Date: Tue, 1 Feb 2011 16:36:29 +0000 (-0200) Subject: Shorter comment line X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=72fc9c8ef5ed5dd4ed7fde50a7c19e8f951bd3fb;p=django-social-auth.git Shorter comment line --- 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})