Fixed bug in get_thermo_data where columns is set to None instead of an empty list

This commit is contained in:
Glen Hocky
2021-01-27 19:41:24 -05:00
parent a77bb30730
commit 6e43ccf32b

View File

@ -329,7 +329,7 @@ def get_thermo_data(output):
elif line.startswith("Loop time of "):
in_run = False
columns = None
columns = []
thermo_data = variable_set('ThermoData', current_run)
r = {'thermo' : thermo_data }
runs.append(namedtuple('Run', list(r.keys()))(*list(r.values())))