diff options
| author | jvoisin | 2022-05-05 22:00:09 +0200 |
|---|---|---|
| committer | jvoisin | 2022-05-05 22:00:09 +0200 |
| commit | 263971370931b1c5b8c49ab287e6d30e40d974e2 (patch) | |
| tree | bbd6456840adf3063ce670531b653d549d4deb44 /libmat2/archive.py | |
| parent | b18e6e11f073ee91616b300f76b19a83ac7766a0 (diff) | |
Minor cleanup
Diffstat (limited to '')
| -rw-r--r-- | libmat2/archive.py | 2 |
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 | ||
