Opened 18 years ago
Closed 18 years ago
#4106 closed (fixed)
Typo (important) in datastructures.py - MultiValueDict
Reported by: | Amr Mostafa | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Core (Other) | Version: | dev |
Severity: | Keywords: | ||
Cc: | amr.mostafa@… | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Around line 214 in django/utils/datastructures.py
raise TypeError, "update expected at most 1 arguments, got %d", len(args)
Should be
raise TypeError, "update expected at most 1 arguments, got %d" % len(args)
(Latest comma replaced by %)
I will attach a patch in case it's more convenient.
Attachments (1)
Change History (3)
by , 18 years ago
Attachment: | datastructures_multivaluedict_typo.diff added |
---|
comment:1 by , 18 years ago
Triage Stage: | Unreviewed → Ready for checkin |
---|
comment:2 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [5060]) Fixed #4106 -- Fixed typo in datastructures.py. Thanks, Amr Mostafa