diff --git a/src/View/Results/Window.py b/src/View/Results/Window.py index f154eb3d..45aaa009 100644 --- a/src/View/Results/Window.py +++ b/src/View/Results/Window.py @@ -614,12 +614,11 @@ class ResultsWindow(PamhyrWindow): quotechar='|', quoting=csv.QUOTE_MINIMAL) writer.writerow(["timestamp", "z", "q"]) - for profile in reach.profiles: - timestamps = self._results.get("timestamps") + timestamps = sorted(self._results.get("timestamps")) - for ts in timestamps: - writer.writerow([ - ts, - profile.get_ts_key(ts, "Z"), - profile.get_ts_key(ts, "Q"), - ]) + for ts in timestamps: + writer.writerow([ + ts, + profile.get_ts_key(ts, "Z"), + profile.get_ts_key(ts, "Q"), + ])