diff --git a/django/contrib/localflavor/cz/forms.py b/django/contrib/localflavor/cz/forms.py
index e980569..655e5ce 100644
|
a
|
b
|
class CZBirthNumberField(Field):
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | def clean(self, value, gender=None): |
| 54 | | super(CZBirthNumberField, self).__init__(value) |
| | 54 | super(CZBirthNumberField, self).clean(value) |
| 55 | 55 | |
| 56 | 56 | if value in EMPTY_VALUES: |
| 57 | 57 | return u'' |
| … |
… |
class CZICNumberField(Field):
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | def clean(self, value): |
| 111 | | super(CZICNumberField, self).__init__(value) |
| | 111 | super(CZICNumberField, self).clean(value) |
| 112 | 112 | |
| 113 | 113 | if value in EMPTY_VALUES: |
| 114 | 114 | return u'' |