Opened 17 years ago

Closed 17 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)

datastructures_multivaluedict_typo.diff (673 bytes ) - added by Amr Mostafa 17 years ago.

Download all attachments as: .zip

Change History (3)

by Amr Mostafa, 17 years ago

comment:1 by Gary Wilson <gary.wilson@…>, 17 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Adrian Holovaty, 17 years ago

Resolution: fixed
Status: newclosed

(In [5060]) Fixed #4106 -- Fixed typo in datastructures.py. Thanks, Amr Mostafa

Note: See TracTickets for help on using tickets.
Back to Top