diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index d2217bb8..03925176 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -857,8 +857,7 @@ https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md | |||
857 | self._Load() | 857 | self._Load() |
858 | outer = self._outer_client | 858 | outer = self._outer_client |
859 | yield outer | 859 | yield outer |
860 | for tree in outer.all_children: | 860 | yield from outer.all_children |
861 | yield tree | ||
862 | 861 | ||
863 | @property | 862 | @property |
864 | def all_children(self): | 863 | def all_children(self): |
@@ -867,8 +866,7 @@ https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md | |||
867 | for child in self._submanifests.values(): | 866 | for child in self._submanifests.values(): |
868 | if child.repo_client: | 867 | if child.repo_client: |
869 | yield child.repo_client | 868 | yield child.repo_client |
870 | for tree in child.repo_client.all_children: | 869 | yield from child.repo_client.all_children |
871 | yield tree | ||
872 | 870 | ||
873 | @property | 871 | @property |
874 | def path_prefix(self): | 872 | def path_prefix(self): |