summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libmat2/office.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/office.py b/libmat2/office.py
index 1ef29c5..124f864 100644
--- a/libmat2/office.py
+++ b/libmat2/office.py
@@ -271,7 +271,7 @@ class MSOfficeParser(ZipParser):
271 return False 271 return False
272 272
273 if len(namespace.items()) != 1: 273 if len(namespace.items()) != 1:
274 return False # there should be only one namespace for Types 274 logging.debug("Got several namespaces for Types: %s", namespace.items())
275 275
276 removed_fnames = set() 276 removed_fnames = set()
277 with zipfile.ZipFile(self.filename) as zin: 277 with zipfile.ZipFile(self.filename) as zin: