Refs #23919 -- Used yield from.

This commit is contained in:
Vytis Banaitis 2017-02-24 03:06:01 +02:00 committed by Tim Graham
parent 4cffa9a1ff
commit 3dcc351691
19 changed files with 24 additions and 51 deletions

View file

@ -402,9 +402,7 @@ class ManifestFilesMixin(HashedFilesMixin):
def post_process(self, *args, **kwargs):
self.hashed_files = OrderedDict()
all_post_processed = super().post_process(*args, **kwargs)
for post_processed in all_post_processed:
yield post_processed
yield from super().post_process(*args, **kwargs)
self.save_manifest()
def save_manifest(self):