Skip to content

Commit

Permalink
fix: Only consider rfcs for updates/obsoletes targets
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Aug 10, 2023
1 parent 112ac90 commit e898e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/sync/rfceditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ def parse_relation_list(l):
# # sensibly; otherwise we'll have to ignore them
# l = DocAlias.objects.filter(name__startswith="rfc", docs__docalias__name=x.lower())
# else:
l = Document.objects.filter(name=x.lower())
l = Document.objects.filter(name=x.lower(), type_id="rfc")

for a in l:
if a not in res:
Expand Down

0 comments on commit e898e43

Please sign in to comment.