diff options
author | Tibor Frank <tifrank@cisco.com> | 2021-10-13 11:06:52 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2021-10-13 09:09:15 +0000 |
commit | 94302cc55b6c184578f57b4b7ce77c122745e7b5 (patch) | |
tree | 0530b4e2e0022b8505bd72728aa5f3d866ae88c1 /resources/tools/presentation/generator_files.py | |
parent | 54fb4b3d73b4254092a1cdc51b22c5d95607d163 (diff) |
PAL: Fix processing of AWS tests
- different structure of NIC name
Change-Id: Iddcbc289e5f23bf5ad171971ad125af43812d466
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 2b830298ef5b9b33680f3dc7857365fcaf153938)
Diffstat (limited to 'resources/tools/presentation/generator_files.py')
-rw-r--r-- | resources/tools/presentation/generator_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_files.py b/resources/tools/presentation/generator_files.py index aa4392e473..02288581d0 100644 --- a/resources/tools/presentation/generator_files.py +++ b/resources/tools/presentation/generator_files.py @@ -197,7 +197,7 @@ def file_details_split(file_spec, input_data, frmt=u"rst"): if chapters[chapter_l1][chapter_l2].get(nic, None) is None: chapters[chapter_l1][chapter_l2][nic] = dict( rst_file=f"{join(table_set, chapter_l1)}_{nic}.rst". - replace(u"2n1l-", u""), + replace(u"2n1l-", u"").replace(u"1n1l-", u""), tables=list() ) for idx, tbl_file in enumerate(table_lst): |