diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-04-02 08:35:25 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-04-02 08:35:25 +0000 |
| commit | c349aad4129ee115a0ce4832009bab56b3f10781 (patch) | |
| tree | a9fbaa89c0851e7a09ace4a46ce545a915e1b361 | |
| parent | 765458363bc8967516ae973d255a44d5d2c19566 (diff) | |
Advanced deprecations in contrib.localflavor.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15974 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/localflavor/cz/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/localflavor/cz/forms.py b/django/contrib/localflavor/cz/forms.py index 320a2a8c49..13a94af05c 100644 --- a/django/contrib/localflavor/cz/forms.py +++ b/django/contrib/localflavor/cz/forms.py @@ -73,7 +73,7 @@ class CZBirthNumberField(Field): import warnings warnings.warn( "Support for validating the gender of a CZ Birth number has been deprecated.", - PendingDeprecationWarning) + DeprecationWarning) if gender == 'f': female_const = 50 elif gender == 'm': |
