diff options
Diffstat (limited to 'command.py')
-rw-r--r-- | command.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 | ||
483 | class InteractiveCommand(Command): | 482 | class InteractiveCommand(Command): |