X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;fp=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=c06e492ec8d6f3db9add40f86741971e229a4a0e;hp=fbac776202060e71d4a3c869e3324aeedbbc6446;hb=3ea4fcebabfaac866d469a7b4355ac8df7732a0f;hpb=cab556a47fee3858bd3ef9fc33eb84a563f0e82d diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index fbac776202..c06e492ec8 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1762,7 +1762,9 @@ def table_comparison(table, input_data): for line in tbl_cmp_lst: row = [line[0], ] for idx, itm in enumerate(line[1:]): - if itm is None: + if itm is None or not isinstance(itm, dict) or \ + itm.get(u'mean', None) is None or \ + itm.get(u'stdev', None) is None: new_itm = u"NT" else: if idx < len(cols):