diff options
author | Martin Peres <martin.peres@linux.intel.com> | 2015-09-07 13:02:18 +0300 |
---|---|---|
committer | Martin Peres <martin.peres@linux.intel.com> | 2015-09-07 16:52:07 +0300 |
commit | 35b6a235f23867939ce2dd3ae100927511152931 (patch) | |
tree | 3ce2a5848c0705b89a1e4172b8a13e66d0694252 /stats | |
parent | 46301c8b80cc95603450663e83c646dc455de4ab (diff) |
stats/gen_report: fix a typo in the title generation
Diffstat (limited to 'stats')
-rwxr-xr-x | stats/gen_report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stats/gen_report.py b/stats/gen_report.py index 9c00d77..3b5e0e0 100755 --- a/stats/gen_report.py +++ b/stats/gen_report.py @@ -417,7 +417,7 @@ print("Generating the HTML") if args.title is not None: title = args.title else: - title = "Performance report on the run named '${run_name}'".format(run_name=args.log_folder) + title = "Performance report on the run named '{run_name}'".format(run_name=args.log_folder) geom_prev = -1 for commit in report.commits: |