mirror of
https://github.com/django/django.git
synced 2025-10-23 08:42:06 +00:00
Refs #23919 -- Used yield from.
This commit is contained in:
parent
4cffa9a1ff
commit
3dcc351691
19 changed files with 24 additions and 51 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue