From dbd4d6963280da4c3465532da8778e67ed3271c5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 2 Oct 2018 12:29:10 +0200 Subject: parse-perfcheck: fix parsing of previous CSV data Change-Id: I46db49472dcaa80b54a937f03bf03b06a2d8a87c Reviewed-on: https://gerrit.libreoffice.org/61240 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- bin/parse-perfcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/parse-perfcheck.py') diff --git a/bin/parse-perfcheck.py b/bin/parse-perfcheck.py index 358a22b37f6b..158ef62fe615 100755 --- a/bin/parse-perfcheck.py +++ b/bin/parse-perfcheck.py @@ -142,7 +142,7 @@ def readCsvFile(targetFilename): if not line: continue - curId, curDate, curTestName, curTestComment, curValue = line + curId, curDate, curTestName, curTestComment, curValue, currCallgrindFile = line if curTestComment not in allTests: allTests.append(curTestComment) -- cgit