Changeset - 617e4e372d72
[Not reviewed]
version_5
0 1 0
Dennis Fink - 9 years ago 2015-10-14 00:56:27
dennis.fink@c3l.lu
PEP8 donate/forms.py
1 file changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
ennstatus/donate/forms.py
Show inline comments
 
@@ -6,5 +6,7 @@ from wtforms.validators import DataRequi
 
class DateForm(Form):
 
    year = SelectField('Year', validators=[DataRequired()])
 
    month = SelectField('Month',
 
                        choices=[('{:02d}'.format(i), str(i)) for i in range(1, 13)],
 
                        choices=[
 
                            ('{:02d}'.format(i), str(i)) for i in range(1, 13)
 
                        ],
 
                        validators=[DataRequired()])
0 comments (0 inline, 0 general)