Skip to content

Commit 2c510ad

Browse files
committed
Fix problem with missing label= in community form field declation
- Legacy-Id: 6900
1 parent 950efbb commit 2c510ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/community/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def save(self):
5252

5353
class SubscribeForm(forms.Form):
5454

55-
email = forms.EmailField("Your email")
55+
email = forms.EmailField(label="Your email")
5656

5757
def __init__(self, *args, **kwargs):
5858
self.clist = kwargs.pop('clist')

0 commit comments

Comments
 (0)