Skip to content

Commit f08da46

Browse files
committed
Fix from Brandon (updated somewhat) for a bad reverse() argument.
- Legacy-Id: 3001
1 parent abab86d commit f08da46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idrfc/idrfc_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def friendly_state(self):
204204
elif self.draft_status == "Replaced":
205205
rs = self.replaced_by()
206206
if rs:
207-
return "Replaced by <a href=\"%s\">%s</a>" % (reverse('ipr_show', args=[rs[0]]),rs[0])
207+
return "Replaced by <a href=\"%s\">%s</a>" % (reverse('doc_view', args=[rs[0]]),rs[0], )
208208
else:
209209
return "Replaced"
210210
elif self.draft_status == "Active":

0 commit comments

Comments
 (0)