1👍
✅
That error would perhaps be raised if django.core.validators
was in your INSTALLED_APPS
setting.
If it is in your INSTALLED_APPS
setting, then it shouldn’t be there because it’s not an app. Remove it.
0👍
According to the Django documentation and indeed the source code django.core.validators
is a module, and does not contain a management
attribute.
Source:stackexchange.com