From 30cd7f3f21846a82928665727c74275094b35c88 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 16 Aug 2016 20:36:29 +0200 Subject: [PATCH] fix timestamp key name --- src/borg/item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)