summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-02 12:29:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-02 12:30:12 +0200
commitdbd4d6963280da4c3465532da8778e67ed3271c5 (patch)
tree3413c58c1a6ce9dfa68d3b5d12b95cc087b057e4 /bin
parent4a290888580474f9542f185091bb2a6fcf4e9a53 (diff)
parse-perfcheck: fix parsing of previous CSV data
Change-Id: I46db49472dcaa80b54a937f03bf03b06a2d8a87c Reviewed-on: https://gerrit.libreoffice.org/61240 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/parse-perfcheck.py2
1 files changed, 1 insertions, 1 deletions
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)