From 513d897ea0cf3e006a2b33a89cdbf33cae3592cd Mon Sep 17 00:00:00 2001 From: jvoisin Date: Thu, 25 Oct 2018 11:29:50 +0200 Subject: Implement get_meta() for archives --- libmat2/office.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmat2/office.py') diff --git a/libmat2/office.py b/libmat2/office.py index c10664f..e6370e7 100644 --- a/libmat2/office.py +++ b/libmat2/office.py @@ -301,7 +301,7 @@ class MSOfficeParser(ArchiveBasedAbstractParser): Yes, I know that parsing xml with regexp ain't pretty, be my guest and fix it if you want. """ - metadata = {} + metadata = super().get_meta() zipin = zipfile.ZipFile(self.filename) for item in zipin.infolist(): if item.filename.startswith('docProps/') and item.filename.endswith('.xml'): -- cgit v1.3