You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This quick fix commit in my fork addressed the problem - but I doubt it's the best solution for maintaining backward compatibility if that is a concern.
On line https://github.com/flashingpumpkin/django-socialregistration/blob/master/socialregistration/mixins.py#L126 it reads:
return User()
but technically it should read:
return get_user_model()()
which, while ugly, works for Django 1.5 (edit: when using a custom user model). Otherwise, I get a stack trace like the following:
The text was updated successfully, but these errors were encountered: