From 30d53a911e396cf9dce32d2d150ca487e40aff44 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 7 Jan 2019 19:31:34 +0100 Subject: [PATCH] donate-cpu-server.py: Fix package names in time output. (#1570) The package names contained the whole path, so the leading "resultPath" is now removed to only show the package names. Tested on local server. --- tools/donate-cpu-server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/donate-cpu-server.py b/tools/donate-cpu-server.py index 5ce0fdf17..c8eec2398 100644 --- a/tools/donate-cpu-server.py +++ b/tools/donate-cpu-server.py @@ -270,9 +270,9 @@ def timeReport(resultPath): totalTime184 += t184 totalTimeHead += thead if t184>1 and t184*2 < thead: - text += filename[filename.find('/')+1:] + ' ' + splitline[2] + ' ' + splitline[1] + '\n' + text += filename[len(resultPath)+1:] + ' ' + splitline[2] + ' ' + splitline[1] + '\n' elif thead>1 and thead*2 < t184: - text += filename[filename.find('/')+1:] + ' ' + splitline[2] + ' ' + splitline[1] + '\n' + text += filename[len(resultPath)+1:] + ' ' + splitline[2] + ' ' + splitline[1] + '\n' break text += '\nTotal time: ' + str(totalTime184) + ' ' + str(totalTimeHead)