From: Matías Aguirre Date: Thu, 12 Jan 2012 14:05:42 +0000 (-0800) Subject: Merge pull request #219 from avillavi/master X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=efc2a27f9a0e3ef9d6edbd5ef5b3f95704da3adb;p=django-social-auth.git Merge pull request #219 from avillavi/master FIx for SOCIAL_AUTH_NEW_USER_REDIRECT_URL not working --- efc2a27f9a0e3ef9d6edbd5ef5b3f95704da3adb diff --cc social_auth/backends/__init__.py index 28e836a,df8d7ee..6b02934 --- a/social_auth/backends/__init__.py +++ b/social_auth/backends/__init__.py @@@ -113,10 -114,10 +113,10 @@@ class SocialAuthBackend(ModelBackend) # account user = social_user.user user.social_user = social_user - user.is_new = kwargs.get('is_new') + user.is_new = out.get('is_new') return user - def pipeline(self, pipeline, request, *args, **kwargs): + def pipeline(self, pipeline, *args, **kwargs): """Pipeline""" out = kwargs.copy()