Skip to content

Commit d364057

Browse files
committed
Fix error in setuptools/dist.py
1 parent 6b71893 commit d364057

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setuptools/dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def _skip_setupcfg_normalization(self, section: str) -> bool:
551551
def _is_setuptools_section(self, section: str) -> bool:
552552
return (
553553
section == "metadata"
554-
or section.startswith("option")
554+
or section.startswith("options")
555555
or section in _setuptools_commands()
556556
)
557557

0 commit comments

Comments
 (0)