aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_plots.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-11-16 08:32:56 +0100
committerTibor Frank <tifrank@cisco.com>2018-11-16 08:32:56 +0100
commitc33172ceb416c8bf05f34dab93ba8fd9190fc2af (patch)
treecf1d445c06d7e7865b051d8a100ec8927a7dfff4 /resources/tools/presentation/generator_plots.py
parent87dc696ddc9a9935872082d9bb784588dee7dfde (diff)
Report: Fix legend in the graphs
Change-Id: I597bd4483686fb0807526e8734bebdf64aadf7d9 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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py
index 2ba2dc03e5..004e65e63b 100644
--- a/resources/tools/presentation/generator_plots.py
+++ b/resources/tools/presentation/generator_plots.py
@@ -305,7 +305,7 @@ def plot_latency_error_bars(plot, input_data):
split_name = True
for segment in name_lst:
if (len(name) + len(segment) + 1) > 50 and split_name:
- name += "<br> "
+ name += "<br>"
split_name = False
name += segment + '-'
name = name[:-1]
@@ -494,7 +494,7 @@ def plot_throughput_speedup_analysis(plot, input_data):
split_name = True
for segment in name_lst:
if (len(name) + len(segment) + 1) > 50 and split_name:
- name += "<br> "
+ name += "<br>"
split_name = False
name += segment + '-'
name = name[:-1]