summaryrefslogtreecommitdiff
path: root/libmat2
diff options
context:
space:
mode:
Diffstat (limited to 'libmat2')
-rw-r--r--libmat2/archive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/archive.py b/libmat2/archive.py
index ec44ebd..31d97a0 100644
--- a/libmat2/archive.py
+++ b/libmat2/archive.py
@@ -179,7 +179,7 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
179 # Some fileformats do require to have the `mimetype` file 179 # Some fileformats do require to have the `mimetype` file
180 # as the first file in the archive. 180 # as the first file in the archive.
181 if self._get_member_name(item) == 'mimetype': 181 if self._get_member_name(item) == 'mimetype':
182 items = [item] + items 182 items.insert(0, item)
183 else: 183 else:
184 items.append(item) 184 items.append(item)
185 185