Skip to content

Commit 819e80f

Browse files
committed
Fix quoting bug in AUTH48 links
- Legacy-Id: 5118
1 parent 9c571e6 commit 819e80f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/sync/rfceditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def update_drafts_from_queue(drafts):
167167
e = add_state_change_event(d, system, prev_state, next_state)
168168

169169
if auth48:
170-
e.desc = re.sub(r"(<b>.*</b>)", r"<a href=\"%s\">\1</a>" % auth48, e.desc)
170+
e.desc = re.sub(r"(<b>.*</b>)", "<a href=\"%s\">\\1</a>" % auth48, e.desc)
171171
e.save()
172172

173173
changed.add(name)

0 commit comments

Comments
 (0)