Fix: concat sort behaviour
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Sat, 24 Nov 2018 16:08:15 +0000 (11:08 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Sat, 24 Nov 2018 16:08:15 +0000 (11:08 -0500)
true -> True

Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
scripts/system-tests/generate-plots.py

index d10a167f0166f29799f1164ccc55d2a9c93c8633..5bab68da4e744807538044fc3e10648c01550162 100644 (file)
@@ -130,7 +130,7 @@ def create_metadata_file(res_dir):
             continue
         list_.append(metadata)
 
-    df = pd.concat(list_)
+    df = pd.concat(list_, sort=True)
     df.index=df.build_id
     df.sort_index(inplace=True)
     df.to_csv('metadata.csv', index=False)
@@ -160,7 +160,7 @@ def create_plots(res_dir):
             tmp['testcase'] = res.split('.')[0]
             list_.append(tmp)
 
-        df = pd.concat(list_, sort=true)
+        df = pd.concat(list_, sort=True)
         df = convert_us_to_ns(df)
         df = rename_cols(df)
         df.sort_index(inplace=True)
This page took 0.038493 seconds and 4 git commands to generate.