diff options
Diffstat (limited to 'ihatemoney/forms.py')
| -rw-r--r-- | ihatemoney/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/forms.py b/ihatemoney/forms.py index a4c80c1..1e0ba00 100644 --- a/ihatemoney/forms.py +++ b/ihatemoney/forms.py @@ -147,7 +147,7 @@ class BillForm(FlaskForm): payer = SelectField(_("Payer"), validators=[DataRequired()], coerce=int) amount = CalculatorStringField(_("Amount paid"), validators=[DataRequired()]) external_link = URLField(_("External link"), validators=[Optional( - )], description="A link to an external document, related to this bill") + )], description=_("A link to an external document, related to this bill")) payed_for = SelectMultipleField(_("For whom?"), validators=[DataRequired()], coerce=int) submit = SubmitField(_("Submit")) |
