diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-02-28 13:48:15 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-03-02 16:09:10 +0000 |
commit | 691f24ec052cc9d48d6abe143bcae95486f94388 (patch) | |
tree | be243d4000a3f6a95224c82a59251e08c22ded53 /resources/tools/presentation/generator_plots.py | |
parent | 0013ff2deb67ebdf99655b186b720d393c9cc620 (diff) |
Report: Detailed test results
- sub-chapters reorg
Change-Id: I0a90bcfde1e8be368e7ddaf9a41abbe52851cd62
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 74db877007..5c9698912f 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -314,8 +314,8 @@ def plot_hdrh_lat_by_percentile(plot, input_data): filename=file_name) # Add link to the file: if file_links and target_links: - with open(file_links, u"a") as fw: - fw.write( + with open(file_links, u"a") as file_handler: + file_handler.write( f"- `{name_link} " f"<{target_links}/{file_name.split(u'/')[-1]}>`_\n" ) |