Skip to content

Commit 818499b

Browse files
committed
Fix a bug where the wrong text was shown for IPR declarations which specified that licensing terms would be announced later (option d).
- Legacy-Id: 3265
1 parent 97218e3 commit 818499b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def show(request, ipr_id=None, removed=None):
7878
# Very hacky way to get rid of the last part of option 'd':
7979
cut = text.find(" (")
8080
if cut > 0:
81-
text = text[cut:] + "."
81+
text = text[:cut] + "."
8282
# get rid of the "a) ", "b) ", etc.
8383
ipr.licensing_option = text[3:]
8484
if ipr.is_pending:

0 commit comments

Comments
 (0)