Opened 15 years ago

Closed 15 years ago

Last modified 11 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 Changed 15 years ago by Karen Tracey <kmtracey@…>

Resolution: duplicate
Status: newclosed

comment:2 Changed 11 years ago by Jacob

milestone: 1.0

Milestone 1.0 deleted

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