Opened 12 years ago
Closed 12 years ago
#20669 closed Cleanup/optimization (wontfix)
Layermapping can fail with TypeError
| Reported by: | Owned by: | nobody | |
|---|---|---|---|
| Component: | GIS | Version: | 1.5 |
| Severity: | Normal | Keywords: | |
| Cc: | jinglesboiler@… | Triage Stage: | Unreviewed |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | yes | UI/UX: | no |
Description
because "m" (~ line 554) may have been created via a variety of ways, it appears that in some cases it may not have the "using" keyword as an argument (perhaps not created correctly as a Model object?). (I've seen this problem repeatedly on batch imports)
https://github.com/jingles/django/commit/ce2d467288e87f3093b0c134b7f2488d31c90b57
Change History (1)
comment:1 by , 12 years ago
| Component: | Uncategorized → GIS |
|---|---|
| Resolution: | → wontfix |
| Status: | new → closed |
| Type: | Uncategorized → Cleanup/optimization |
Note:
See TracTickets
for help on using tickets.
I guess that such an error is a symptom of a bad overridden
save()method of some model (missing**kwargsin the method signature).Seeing a similar situation in
loaddata, we are not catching TypeError there, so I'm not inclined to accept it here.If my analysis seems wrong, feel free to reopen with a test case if possible.