We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97218e3 commit 818499bCopy full SHA for 818499b
1 file changed
ietf/ipr/views.py
@@ -78,7 +78,7 @@ def show(request, ipr_id=None, removed=None):
78
# Very hacky way to get rid of the last part of option 'd':
79
cut = text.find(" (")
80
if cut > 0:
81
- text = text[cut:] + "."
+ text = text[:cut] + "."
82
# get rid of the "a) ", "b) ", etc.
83
ipr.licensing_option = text[3:]
84
if ipr.is_pending:
0 commit comments