|
@@ -16,7 +16,8 @@ class BirthdayField(DateField):
|
|
"""Same as DateField, except it allows ``None`` values in case a user
|
|
"""Same as DateField, except it allows ``None`` values in case a user
|
|
wants to delete his birthday.
|
|
wants to delete his birthday.
|
|
"""
|
|
"""
|
|
- def __init__(self, label=None, validators=None, format='%Y-%m-%d', **kwargs):
|
|
+ def __init__(self, label=None, validators=None, format='%Y-%m-%d',
|
|
|
|
+ **kwargs):
|
|
super(DateField, self).__init__(label, validators, format, **kwargs)
|
|
super(DateField, self).__init__(label, validators, format, **kwargs)
|
|
|
|
|
|
def process_formdata(self, valuelist):
|
|
def process_formdata(self, valuelist):
|