Opened 16 years ago
Closed 16 years ago
#9417 closed (duplicate)
Unhelpful admin.py error message
Reported by: | Derek Willis | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
If you make a boneheaded move such as creating a ModelAdmin class for a model that you forgot to include in your admin.py's model import statement, you get an error. But it's not the error you might expect. What happens is you get the "model already registered exception", citing the first model registered using admin.site.register().
I spent awhile looking around my app trying to see if I had indeed registered the model in question more than once via imports, but couldn't find it. When I fixed my error in the import statement, everything was fine.
So definitely user error. But the error message Django displayed didn't help guide me to the problem.
That's pretty much the same symptomatic issue as in #8245.