From: Marc Hoersken Date: Sun, 20 May 2012 11:18:47 +0000 (+0200) Subject: Added missing quotes to comment opening X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=312245d9fd694a93f1a13ec258963319b4414349;p=django-social-auth.git Added missing quotes to comment opening --- diff --git a/social_auth/backends/google.py b/social_auth/backends/google.py index 0d517fa..3068ac6 100644 --- a/social_auth/backends/google.py +++ b/social_auth/backends/google.py @@ -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']