Merge pull request #1488 from ThomasWaldmann/fix-timestamp-key-name

fix timestamp key name, fixes #1487
This commit is contained in:
enkore 2016-08-16 21:28:30 +02:00 committed by GitHub
commit 8718c24856
1 changed files with 1 additions and 1 deletions

View File

@ -259,6 +259,6 @@ class ManifestItem(PropDict):
version = PropDict._make_property('version', int) version = PropDict._make_property('version', int)
archives = PropDict._make_property('archives', dict) # name -> dict 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) config = PropDict._make_property('config', dict)
item_keys = PropDict._make_property('item_keys', tuple) item_keys = PropDict._make_property('item_keys', tuple)