Commit 8380e0436bb369e163498e0ac5f42b878e56e880
1 parent
b40fb4b0
Exists in
master
and in
2 other branches
Fix an awful bug that crept in uninvited.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
web/run.py
... | ... | @@ -297,7 +297,7 @@ def generate_csv_contents(source_config, started_at, stopped_at): |
297 | 297 | data_n = cdf_handle.variables['N'] |
298 | 298 | data_p = cdf_handle.variables['P_dyn'] |
299 | 299 | data_d = cdf_handle.variables['Delta_angle'] |
300 | - for time, datum_v, datum_b, datum_t, datum_p, datum_n, datum_d \ | |
300 | + for time, datum_v, datum_b, datum_t, datum_n, datum_p, datum_d \ | |
301 | 301 | in zip(times, data_v, data_b, data_t, data_n, data_p, data_d): |
302 | 302 | vrad = datum_v[0] |
303 | 303 | vtan = datum_v[1] | ... | ... |