diff options
| author | jvoisin | 2015-12-02 20:36:13 +0100 |
|---|---|---|
| committer | jvoisin | 2015-12-02 20:36:13 +0100 |
| commit | 0d3ef2edd7accd04e0b7e39bbf303362b8e8e1c2 (patch) | |
| tree | 8dddec9cedf07f0f5533371d6945a3a42b9ce816 /libmat/archive.py | |
| parent | f80612a4abbff2e179fc5006772cf2c3b924323d (diff) | |
Misc pep8 conformity
Diffstat (limited to 'libmat/archive.py')
| -rw-r--r-- | libmat/archive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat/archive.py b/libmat/archive.py index 07c5830..b635f99 100644 --- a/libmat/archive.py +++ b/libmat/archive.py | |||
| @@ -30,7 +30,7 @@ class GenericArchiveStripper(parser.GenericParser): | |||
| 30 | """ Remove the files inside the temp dir, | 30 | """ Remove the files inside the temp dir, |
| 31 | then remove the temp dir | 31 | then remove the temp dir |
| 32 | """ | 32 | """ |
| 33 | for root, dirs, files in os.walk(self.tempdir): | 33 | for root, _, files in os.walk(self.tempdir): |
| 34 | for item in files: | 34 | for item in files: |
| 35 | path_file = os.path.join(root, item) | 35 | path_file = os.path.join(root, item) |
| 36 | mat.secure_remove(path_file) | 36 | mat.secure_remove(path_file) |
