Include updated in features.json (#470)

This commit is contained in:
Eric Bidelman 2017-06-20 11:50:21 -07:00 коммит произвёл GitHub
Родитель 71299b2fea
Коммит 8a4925ef38
2 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,5 @@
application: cr-status
version: 2017-06-13
version: 2017-06-20
runtime: python27
threadsafe: true
api_version: 1

Просмотреть файл

@ -346,8 +346,8 @@ class Feature(DictModel):
'when': d.pop('created_by', None),
}
d['updated'] = {
'by': d.pop('updated', None),
'when': d.pop('updated_by', None),
'by': d.pop('updated_by', None),
'when': d.pop('updated', None),
}
d['standards'] = {
'spec': d.pop('spec_link', None),
@ -428,7 +428,6 @@ class Feature(DictModel):
d['browsers']['chrome']['status']['milestone_str'] = d['browsers']['chrome']['status']['text']
del d['created']
del d['updated']
del_none(d) # Further prune response by removing null/[] values.