summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/office.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/office.py b/src/office.py
index 1c5e795..3d06bc8 100644
--- a/src/office.py
+++ b/src/office.py
@@ -31,7 +31,7 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
31 metadata['comment'] = zipinfo.comment 31 metadata['comment'] = zipinfo.comment
32 32
33 if zipinfo.date_time != (1980, 1, 1, 0, 0, 0): 33 if zipinfo.date_time != (1980, 1, 1, 0, 0, 0):
34 metadata['comment'] = datetime.datetime(*zipinfo.date_time) 34 metadata['date_time'] = datetime.datetime(*zipinfo.date_time)
35 35
36 return metadata 36 return metadata
37 37