summaryrefslogtreecommitdiff
path: root/libmat2/archive.py
diff options
context:
space:
mode:
authorintrigeri2019-02-03 09:43:27 +0000
committerjvoisin2019-02-03 19:18:41 +0100
commite8c1bb0e3c4cae579e81ce6a4b01b829900ff922 (patch)
treecd7146283c98f25544334cdd322b8c577ccc40d3 /libmat2/archive.py
parent8b5d0c286c91537b43eb3284aa93b382636e7ebf (diff)
Whenever possible, use bwrap for subprocesses
This should closes #90
Diffstat (limited to 'libmat2/archive.py')
-rw-r--r--libmat2/archive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/archive.py b/libmat2/archive.py
index bcf8d33..b2483fc 100644
--- a/libmat2/archive.py
+++ b/libmat2/archive.py
@@ -132,7 +132,7 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
132 logging.warning("In file %s, keeping unknown element %s (format: %s)", 132 logging.warning("In file %s, keeping unknown element %s (format: %s)",
133 self.filename, item.filename, mtype) 133 self.filename, item.filename, mtype)
134 else: 134 else:
135 logging.error("In file %s, element %s's format (%s) " + 135 logging.error("In file %s, element %s's format (%s) " \
136 "isn't supported", 136 "isn't supported",
137 self.filename, item.filename, mtype) 137 self.filename, item.filename, mtype)
138 abort = True 138 abort = True