We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the error I got after adding it to my settings.py. AttributeError: Manager isn't available; 'auth.User' has been swapped for 'account.Account'
AttributeError: Manager isn't available; 'auth.User' has been swapped for 'account.Account'
The solution is prety simple. But it requires
from django.contrib.auth import get_user_model User = get_user_model()
The text was updated successfully, but these errors were encountered:
so where did you make this changes ? in which file
Sorry, something went wrong.
Looks like its the change proposed in this PR https://github.com/The-Politico/django-kanban-budget/pull/38/files
No branches or pull requests
This is the error I got after adding it to my settings.py.
AttributeError: Manager isn't available; 'auth.User' has been swapped for 'account.Account'
The solution is prety simple. But it requires
The text was updated successfully, but these errors were encountered: