Skip to content
Snippets Groups Projects
Commit 623e87b7 authored by Georges Da Costa's avatar Georges Da Costa
Browse files

Corrects a bug on older version of python

parent decec427
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ def read_run_list(prefix, hostname, startTime, basename, fullname, hostlist=None
for host in hostlist.split(';'):
name, _ = host.split('.', maxsplit=1)
df = pd.DataFrame(data[name]).transpose()
df = pd.DataFrame(list(data[name])).transpose()
df.columns = ["#timestamp", prefix]
result.append(df)
except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment