]> git.parisson.com Git - django-social-auth.git/commitdiff
Added missing quotes to comment opening
authorMarc Hoersken <info@marc-hoersken.de>
Sun, 20 May 2012 11:18:47 +0000 (13:18 +0200)
committerMarc Hoersken <info@marc-hoersken.de>
Sun, 20 May 2012 11:18:47 +0000 (13:18 +0200)
social_auth/backends/google.py

index 0d517fa6e53c4d6a7928792f2696380aa8ec33c8..3068ac6291e9d3054cfbf935933750cf31af6b94 100644 (file)
@@ -52,7 +52,7 @@ class GoogleOAuthBackend(OAuthBackend):
     name = 'google-oauth'
 
     def get_user_id(self, details, response):
-        "Use google email as unique id"""
+        """Use google email as unique id"""
         validate_whitelists(self, details['email'])
         return details['email']