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
Under some conditions ``UserSocialAuth._meta.get_field('user').rel.to``
does not return a Model class but a string of the form
``'<app_label>.<model_name>'``. This results in an AttributeError in the
Django admin.py which ultimately triggers an error in Django's
RegexURLResolver. This is fixed by properly resolving the user model and
return a class rather than a string.
Pull request follows.
The text was updated successfully, but these errors were encountered: