summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'command.py')
-rw-r--r--command.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/command.py b/command.py
index a6189ed6..8c31c184 100644
--- a/command.py
+++ b/command.py
@@ -476,8 +476,7 @@ class Command:
476 top = self.manifest 476 top = self.manifest
477 yield top 477 yield top
478 if not opt.this_manifest_only: 478 if not opt.this_manifest_only:
479 for child in top.all_children: 479 yield from top.all_children
480 yield child
481 480
482 481
483class InteractiveCommand(Command): 482class InteractiveCommand(Command):