From: Magnus Hagander Date: Tue, 25 Sep 2018 19:40:11 +0000 (+0200) Subject: Fix syntax error in previous commit X-Git-Url: http://git.postgresql.org/gitweb/static/session/%7B%7Bsession.id%7D%7D-%7B%7Bsession.title%7Cslugify%7D%7D?a=commitdiff_plain;h=c22a0f1fbd3eab6ef2b878cbfe7b5b606ee6c0ac;p=pgeu-website.git Fix syntax error in previous commit --- diff --git a/postgresqleu/confreg/forms.py b/postgresqleu/confreg/forms.py index e53c312..47809cd 100644 --- a/postgresqleu/confreg/forms.py +++ b/postgresqleu/confreg/forms.py @@ -624,7 +624,7 @@ class WaitlistOfferForm(forms.Form): self.reg_list = self._get_id_list_from_data() if len(self.reg_list) == 1: self.fields['confirm'].help_text = "Confirm that you want to send an offer to an attendee on the waitlist" - else + else: self.fields['confirm'].help_text = "Confirm that you want to send an offer to {0} attendees on the waitlist".format(len(self.reg_list)) if self.data.get('submit') == 'Make offer for hours': del self.fields['until']