summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-07-18 23:06:59 +0000
committerBrian Rosner <brosner@gmail.com>2008-07-18 23:06:59 +0000
commit42ea7a5ce8aece67d16c6610a49560c1493d4653 (patch)
treedb8111bcd9715366c06484db68ef0fa0358ce548
parentdeedd01ca3e66f022899c6f5009526a00b709107 (diff)
downloaddjango-attic/newforms-admin.tar.gz
newforms-admin: Merged from trunk up to [7961].archive/attic/newforms-adminattic/newforms-admin
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7963 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/localflavor.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/localflavor.txt b/docs/localflavor.txt
index 5a2e5b8fda..b4bccfb138 100644
--- a/docs/localflavor.txt
+++ b/docs/localflavor.txt
@@ -20,10 +20,10 @@ For example, here's how you can create a form with a field representing a
French telephone number::
from django import newforms as forms
- from django.contrib.localflavor import fr
+ from django.contrib.localflavor.fr.forms import FRPhoneNumberField
class MyForm(forms.Form):
- my_french_phone_no = fr.forms.FRPhoneNumberField()
+ my_french_phone_no = FRPhoneNumberField()
Supported countries
===================