]> git.parisson.com Git - django-social-auth.git/commitdiff
Shorter comment line
authorMatías Aguirre <matiasaguirre@gmail.com>
Tue, 1 Feb 2011 16:36:29 +0000 (14:36 -0200)
committerMatías Aguirre <matiasaguirre@gmail.com>
Tue, 1 Feb 2011 16:36:29 +0000 (14:36 -0200)
social_auth/backends/facebook.py

index 4d19159f3b2073fb39eb10bcd4fa86fc5c70ebef..b397b5714d52e3a5208af15b418e4c87000c7737 100644 (file)
@@ -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})