summaryrefslogtreecommitdiff
path: root/libmat/archive.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmat/archive.py')
-rw-r--r--libmat/archive.py2
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)