summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2016-08-16 20:36:29 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2016-08-16 20:36:29 +0200
commit30cd7f3f21846a82928665727c74275094b35c88 (patch)
treedaefdb1b503939cf34408aa62b0db2c16250dc6e /src
parentd5edaa502cf0f815d38c6db026bd96a775c6222d (diff)
fix timestamp key name
Diffstat (limited to 'src')
-rw-r--r--src/borg/item.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/borg/item.py b/src/borg/item.py
index 0a0908c02..d74bfdb55 100644
--- a/src/borg/item.py
+++ b/src/borg/item.py
@@ -259,6 +259,6 @@ class ManifestItem(PropDict):
version = PropDict._make_property('version', int)
archives = PropDict._make_property('archives', dict) # name -> dict
- timestamp = PropDict._make_property('time', str, 'surrogate-escaped str', encode=safe_encode, decode=safe_decode)
+ timestamp = PropDict._make_property('timestamp', str, 'surrogate-escaped str', encode=safe_encode, decode=safe_decode)
config = PropDict._make_property('config', dict)
item_keys = PropDict._make_property('item_keys', tuple)