From b55c1bb603e4032a04190967579a4432922ae72a Mon Sep 17 00:00:00 2001 From: Andres Villavicencio Date: Mon, 9 Jan 2012 04:42:31 +0000 Subject: [PATCH] Fix to make SOCIAL_AUTH_NEW_USER_REDIRECT_URL work --- social_auth/backends/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social_auth/backends/__init__.py b/social_auth/backends/__init__.py index 29e368b..d87aa06 100644 --- a/social_auth/backends/__init__.py +++ b/social_auth/backends/__init__.py @@ -114,7 +114,7 @@ class SocialAuthBackend(ModelBackend): # account user = social_user.user user.social_user = social_user - user.is_new = kwargs.get('is_new') + user.is_new = out['is_new'] return user def pipeline(self, pipeline, request, *args, **kwargs): -- 2.39.5