summaryrefslogtreecommitdiff
path: root/utils/ezbench.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/ezbench.py')
-rw-r--r--utils/ezbench.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/ezbench.py b/utils/ezbench.py
index 77685e8..0f3fdc7 100644
--- a/utils/ezbench.py
+++ b/utils/ezbench.py
@@ -205,10 +205,13 @@ def genPerformanceReport(log_folder, wantFrametime = False, silentMode = False):
# Sort the list of benchmarks
benchmarks = sorted(benchmarks, key=lambda bench: bench.full_name)
+ # Read the notes before going back to the original folder
+ notes = readNotes()
+
# Go back to the original folder
os.chdir(cwd)
- return Report(benchmarks, commits, readNotes())
+ return Report(benchmarks, commits, notes)
def getPerformanceResultsCommitBenchmark(commit, benchmark, wantFrametime = False):
for result in commit.results: