Skip to content

Commit 5016bae

Browse files
committed
Remove none-selected option from licensing options of new IPR form. Commit ready for merge
- Legacy-Id: 8634
1 parent 097b936 commit 5016bae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/new.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
phone_error_message = """Phone numbers may have a leading "+", and otherwise only contain numbers [0-9]; dash, period or space; parentheses, and an optional extension number indicated by 'x'."""
2323

2424
class BaseIprForm(forms.ModelForm):
25-
licensing_option = forms.IntegerField(widget=forms.RadioSelect(choices=LICENSE_CHOICES), required=False)
25+
licensing_option = forms.IntegerField(widget=forms.RadioSelect(choices=LICENSE_CHOICES[1:]), required=False)
2626
is_pending = forms.IntegerField(widget=forms.RadioSelect(choices=((1, "YES"), (2, "NO"))), required=False)
2727
applies_to_all = forms.IntegerField(widget=forms.RadioSelect(choices=((1, "YES"), (2, "NO"))), required=False)
2828
class Meta:

0 commit comments

Comments
 (0)