Fixed bug in get_thermo_data where columns is set to None instead of an empty list
This commit is contained in:
@ -329,7 +329,7 @@ def get_thermo_data(output):
|
|||||||
|
|
||||||
elif line.startswith("Loop time of "):
|
elif line.startswith("Loop time of "):
|
||||||
in_run = False
|
in_run = False
|
||||||
columns = None
|
columns = []
|
||||||
thermo_data = variable_set('ThermoData', current_run)
|
thermo_data = variable_set('ThermoData', current_run)
|
||||||
r = {'thermo' : thermo_data }
|
r = {'thermo' : thermo_data }
|
||||||
runs.append(namedtuple('Run', list(r.keys()))(*list(r.values())))
|
runs.append(namedtuple('Run', list(r.keys()))(*list(r.values())))
|
||||||
|
|||||||
Reference in New Issue
Block a user