From 59dcc47466dfceaad5e18629f2c2f7a036fb8a38 Mon Sep 17 00:00:00 2001 From: Tom Barbette Date: Thu, 25 Jul 2024 00:28:00 +0200 Subject: [PATCH] Fix missing namespace --- npf_run.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/npf_run.py b/npf_run.py index 1e5711d..83f897d 100755 --- a/npf_run.py +++ b/npf_run.py @@ -272,13 +272,14 @@ def main(): graph_variables=[Run(x) for x in test.variables], options = args) if time_results: - for find, results in time_results.items(): + for time_ns, results in time_results.items(): if not results: continue series_with_history = [(test, build, results)] grapher.graph(series=series_with_history, title=test.get_title(), - filename=filename, + filename = filename, + fileprefix = time_ns, options = args) if last_build and args.graph_num > 0: graph_builds = [last_build] + graph_builds[:-1]