From d74cc1a3fe29464c0cc2e9a0ea549be2691dc033 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Fri, 16 Sep 2011 19:00:52 -0300 Subject: [PATCH] Define sender --- social_auth/backends/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.39.5