Commit 696037b4ec4a0b387a0d387486c0df03237b6169
1 parent
f57c94fe
Exists in
master
and in
2 other branches
Fix an idiot bug that was here for too long.
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
web/run.py
... | ... | @@ -566,10 +566,11 @@ def get_data_for_target(target_config, input_slug, |
566 | 566 | if dkey in orbit_data: |
567 | 567 | x_hee = orbit_data[dkey][0] |
568 | 568 | y_hee = orbit_data[dkey][1] |
569 | + # /!\ MUST be in the same order as PROPERTIES | |
569 | 570 | all_data[dkey] = ( |
570 | 571 | dtime.strftime("%Y-%m-%dT%H:%M:%S+00:00"), |
571 | 572 | vrad, vtan, vtot, |
572 | - datum_b, datum_t, datum_n, datum_p, datum_a, | |
573 | + datum_b, datum_t, datum_p, datum_n, datum_a, | |
573 | 574 | x_hee, y_hee |
574 | 575 | ) |
575 | 576 | cdf_handle.close() | ... | ... |