From: Matías Aguirre Date: Fri, 16 Sep 2011 22:00:52 +0000 (-0300) Subject: Define sender X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d74cc1a3fe29464c0cc2e9a0ea549be2691dc033;p=django-social-auth.git Define sender --- diff --git a/social_auth/backends/__init__.py b/social_auth/backends/__init__.py index c241a60..daa8078 100644 --- a/social_auth/backends/__init__.py +++ b/social_auth/backends/__init__.py @@ -114,7 +114,9 @@ class SocialAuthBackend(ModelBackend): if not CREATE_USERS or not kwargs.get('create_user', True): # Send signal for cases where tracking failed registering # is useful. - socialauth_not_registered.send(uid=uid, response=response, + socialauth_not_registered.send(sender=self.__class__, + uid=uid, + response=response, details=details) return None