diff options
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 285e7ab51d..08cf1a9c30 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -232,9 +232,9 @@ def plot_hdrh_lat_by_percentile(plot, input_data): replace(u'-ndrpdr', u'').replace(u'2n1l-', u'')) try: nic = re.search(REGEX_NIC, test[u"parent"]).group(1) - except IndexError: + except (IndexError, AttributeError, KeyError, ValueError): nic = u"" - name_link = f"{nic}-{test[u'name']}" + name_link = f"{nic}-{test[u'name']}".replace(u'-ndrpdr', u'') logging.info(f" Generating the graph: {name_link}") |