Fix field that was accidentally required

This commit is contained in:
Raphael Michel
2018-07-13 18:19:40 +02:00
parent a0fcb116f5
commit 7c00853f5d

View File

@@ -43,7 +43,8 @@ class BankTransfer(BasePaymentProvider):
('bank_details', self.form_field()),
('omit_hyphen', forms.BooleanField(
label=_('Do not include a hypen in the payment reference.'),
help_text=_('This is required in some countries.')
help_text=_('This is required in some countries.'),
required=False
)),
]