Skip to content

Commit d07962c

Browse files
authored
Merge pull request pypa/distutils#276 from DimitriPapadopoulos/_show_help
Let _show_help() use commands instead of self.commands
2 parents b7ee725 + 40c56e2 commit d07962c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ def _show_help(
658658
)
659659
print()
660660

661-
for command in self.commands:
661+
for command in commands:
662662
if isinstance(command, type) and issubclass(command, Command):
663663
klass = command
664664
else:

0 commit comments

Comments
 (0)