1
0
Fork 0

Minor cleanup

This commit is contained in:
jvoisin 2022-05-05 22:00:09 +02:00
parent b18e6e11f0
commit 2639713709
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
# Some fileformats do require to have the `mimetype` file
# as the first file in the archive.
if self._get_member_name(item) == 'mimetype':
items = [item] + items
items.insert(0, item)
else:
items.append(item)