Skip to content

Commit

Permalink
Meta: Group Accepted Meta-PEPs with Active, not historical
Browse files Browse the repository at this point in the history
  • Loading branch information
CAM-Gerlach committed Mar 11, 2022
1 parent c399171 commit 1309e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pep_sphinx_extensions/pep_zero_generator/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def _classify_peps(peps: list[PEP]) -> tuple[list[PEP], ...]:
elif pep.status == STATUS_DEFERRED:
deferred.append(pep)
elif pep.pep_type == TYPE_PROCESS:
if pep.status == STATUS_ACTIVE:
if pep.status in {STATUS_ACCEPTED, STATUS_ACTIVE}:
meta.append(pep)
elif pep.status in {STATUS_WITHDRAWN, STATUS_REJECTED}:
dead.append(pep)
Expand Down

0 comments on commit 1309e29

Please sign in to comment.