Convert run start to local time

main
Ryan Rix 2017-07-01 19:51:12 -07:00
parent 8cf3386075
commit fcf2413d8d
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def transform_runs(raw_data):
for run in raw_data:
run = run['fields']
d = {
'time': arrow.get(run['starttime']).format('HH:mm:ss'),
'time': arrow.get(run['starttime']).to('America/Chicago').format('HH:mm:ss'),
'estimate': run['run_time'],
'name': run['name'],
'category': run['category'],