Skip to content

Commit

Permalink
feat: Log warning if rfc index refers to unknown draft
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Aug 10, 2023
1 parent e898e43 commit fd1d425
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 @@ -422,7 +422,7 @@ def update_docs_from_rfc_index(
try:
draft = Document.objects.get(name=draft_name, type_id="draft")
except Document.DoesNotExist:
pass
log(f"Warning: RFC index for {rfc_number} referred to unknown draft {draft_name}")
else:
draft_events = []
draft_changes = []
Expand Down

0 comments on commit fd1d425

Please sign in to comment.