fix timestamp key name

This commit is contained in:
Thomas Waldmann 2016-08-16 20:36:29 +02:00
parent d5edaa502c
commit 30cd7f3f21
1 changed files with 1 additions and 1 deletions

View File

@ -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)