Skip to content

Commit 7a131cd

Browse files
committed
Fixed the handling of help pages for doc states.
- Legacy-Id: 5911
1 parent 5171e33 commit 7a131cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/views_help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def state_help(request, type):
1111
"draft-iana-action": ("draft-iana-action", "IANA Action States For Internet-Drafts"),
1212
"charter": ("charter", "Charter States"),
1313
"conflict-review": ("conflrev", "Conflict Review States")
14-
}.get(type, "")
14+
}.get(type, (None, None))
1515
state_type = get_object_or_404(StateType, slug=slug)
1616

1717
states = State.objects.filter(type=state_type).order_by("order")

0 commit comments

Comments
 (0)