Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#7749 closed (duplicate)

local flavor import example bug

Reported by: Mihai Damian Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: localflavor
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

This example won't work as expected:

from django.contrib.localflavor import fr

class MyForm(forms.Form):
    my_french_phone_no = fr.forms.FRPhoneNumberField()

as module fr doesn't appear to have a forms object.

You would need something like

from django.contrib.localflavor.fr import forms as fr_forms

or

import forms

in init.py

Valid for all other localflavor modules

Change History (2)

comment:1 by Karen Tracey <kmtracey@…>, 16 years ago

Resolution: duplicate
Status: newclosed

comment:2 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

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