diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-02-13 13:23:18 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-02-13 13:23:18 +0100 |
commit | b47c8f8ed56880eda3f64cf06abd47155ea97db0 (patch) | |
tree | 7b039d445334162e0a07224843fafdadc4331220 /resources/tools/presentation/generator_tables.py | |
parent | 84309b2273ae499f5b6cc1d50538ae077c120bb7 (diff) |
Report: Format of tables
Change-Id: I783ad52f7efab0e99d5238c0af0432aa77155193
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index b9a920ab32..576766952b 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -396,7 +396,7 @@ def table_merged_details(table, input_data): if column[u"data"].split(u" ")[1] in (u"name", ): col_data = f" |prein| {col_data} |preout| " if column[u"data"].split(u" ")[1] in \ - (u"conf-history", u"show-run"): + (u"conf-history", u"show-run", u"msg"): col_data = col_data.replace(u" |br| ", u"", 1) col_data = f" |prein| {col_data[:-5]} |preout| " row_lst.append(f'"{col_data}"') |