support format switch
This commit is contained in:
parent
0baa2f20cc
commit
db5168a675
1 changed files with 6 additions and 0 deletions
|
@ -77,6 +77,12 @@ def get_events():
|
||||||
for f in iter_events():
|
for f in iter_events():
|
||||||
with Path(f).open() as fo:
|
with Path(f).open() as fo:
|
||||||
jj = json.load(fo)
|
jj = json.load(fo)
|
||||||
|
|
||||||
|
# quick hack to adapt for both old & new formats
|
||||||
|
if 'events' in jj:
|
||||||
|
jj = jj['events']
|
||||||
|
#
|
||||||
|
|
||||||
for e in jj:
|
for e in jj:
|
||||||
eid = e['id']
|
eid = e['id']
|
||||||
prev = events.get(eid, None)
|
prev = events.get(eid, None)
|
||||||
|
|
Loading…
Add table
Reference in a new issue