From 8cef9492d032edb23eda2c03ddfd255aef5624f9 Mon Sep 17 00:00:00 2001 From: Tom Roussel <21120212+TomRoussel@users.noreply.github.com> Date: Sat, 2 Mar 2024 12:52:52 +0100 Subject: [PATCH] Reverted unnecessary string edit --- ihatemoney/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ihatemoney/forms.py b/ihatemoney/forms.py index 2fdfcab9..6be91224 100644 --- a/ihatemoney/forms.py +++ b/ihatemoney/forms.py @@ -363,7 +363,7 @@ class BillForm(FlaskForm): description=_("A link to an external document, related to this bill"), ) payed_for = SelectMultipleField( - _("For Who?"), validators=[DataRequired()], coerce=int + _("For whom?"), validators=[DataRequired()], coerce=int ) bill_type = SelectField(_("Bill Type"), validators=[DataRequired()], coerce=str) submit = SubmitField(_("Submit"))