Skip to content

Commit

Permalink
[utils/mc_log_gui] Fix comparison loading
Browse files Browse the repository at this point in the history
  • Loading branch information
gergondet committed Oct 5, 2023
1 parent bd1f938 commit 21231bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/mc_log_gui/mc_log_ui/mc_log_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ def load_csv(self, fpath, clear=True):
)
if len(self.loaded_files) > 1:
if len(self.loaded_files) == 2:
keys = self.data.keys()
keys = list(self.data.keys())
for k in keys:
self.data["{}_{}".format(self.loaded_files[0], k)] = self.data[k]
del self.data[k]
Expand Down

0 comments on commit 21231bc

Please sign in to comment.