Skip to content

Commit b869d9f

Browse files
committed
Change max acronym length to 10 instead of 8
- Legacy-Id: 4348
1 parent 8570807 commit b869d9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/wginfo/edit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
class WGForm(forms.Form):
2323
name = forms.CharField(max_length=255, label="WG Name", required=True)
24-
acronym = forms.CharField(max_length=8, label="WG Acronym", required=True)
24+
acronym = forms.CharField(max_length=10, label="WG Acronym", required=True)
2525
chairs = EmailsField(label="WG Chairs", required=False)
2626
secretaries = EmailsField(label="WG Secretaries", required=False)
2727
techadv = EmailsField(label="WG Technical Advisors", required=False)

0 commit comments

Comments
 (0)