summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/TRexDataAnalysis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/TRexDataAnalysis.py b/doc/TRexDataAnalysis.py
index 4cd928bb..9ddc3b0f 100755
--- a/doc/TRexDataAnalysis.py
+++ b/doc/TRexDataAnalysis.py
@@ -110,7 +110,7 @@ def create_all_data_per_setup(setup_dict, setup_name, start_date, end_date, show
def create_detailed_table(dframe_arr_detailed):
- result = reduce(lambda x, y: pd.merge(x, y, on=('Build Id', 'Setup')), dframe_arr_detailed)
+ result = reduce(lambda x, y: pd.merge(x, y, how='outer'), dframe_arr_detailed)
return result