From d1b641b45e70e88c84ca8cd6f45ba953ee18da07 Mon Sep 17 00:00:00 2001 From: Arnaud Bos Date: Tue, 1 Nov 2011 13:07:32 +0100 Subject: Correct "payed" --> "paid" typo. Fix #60. See #48 for spelling mistakes and typos --- budget/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'budget/forms.py') diff --git a/budget/forms.py b/budget/forms.py index 0af4994..7342762 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -102,7 +102,7 @@ class BillForm(Form): date = DateField(_("Date"), validators=[Required()], default=datetime.now) what = TextField(_("What?"), validators=[Required()]) payer = SelectField(_("Payer"), validators=[Required()], coerce=int) - amount = DecimalField(_("Amount payed"), validators=[Required()]) + amount = DecimalField(_("Amount paid"), validators=[Required()]) payed_for = SelectMultipleField(_("For whom?"), validators=[Required()], widget=select_multi_checkbox, coerce=int) submit = SubmitField(_("Send the bill")) -- cgit v1.1