Opened 17 years ago

Closed 17 years ago

#6347 closed (fixed)

Python error in localflavor/it/it_province.py

Reported by: Filippo Caprioli <fcaprioli@…> Owned by: nobody
Component: contrib.localflavor Version: dev
Severity: Keywords:
Cc: 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

There is a missing comma in django/contrib/localflavor/it/it_province.py on line 88 that makes the module unusable:

    ('RI', 'Rieti'),
    ('RN', 'Rimini')
    ('RM', 'Roma'),

should look like

    ('RI', 'Rieti'),
    ('RN', 'Rimini'),
    ('RM', 'Roma'),

Attachments (1)

it_provinces.diff (379 bytes ) - added by fcaprioli@… 17 years ago.

Download all attachments as: .zip

Change History (3)

by fcaprioli@…, 17 years ago

Attachment: it_provinces.diff added

comment:1 by Simon Greenhill <dev@…>, 17 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Gary Wilson, 17 years ago

Resolution: fixed
Status: newclosed

in [7017].

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