bin/parse-perfcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit dbd4d6963280da4c3465532da8778e67ed3271c5 Author: Noel Grandin <[email protected]> AuthorDate: Tue Oct 2 12:29:10 2018 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Tue Oct 2 12:30:12 2018 +0200 parse-perfcheck: fix parsing of previous CSV data Change-Id: I46db49472dcaa80b54a937f03bf03b06a2d8a87c Reviewed-on: https://gerrit.libreoffice.org/61240 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Noel Grandin <[email protected]> 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) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
