From: Robert Yang Date: Tue, 22 Aug 2017 01:23:09 +0000 (-0700) Subject: utils/logparser.py: fix section check X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~20250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=320ea01f9eb33df462534bf08488ff6ada9bbe7b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git utils/logparser.py: fix section check The section might be None or '', so use "if section" for it. Fixed: File "/buildarea/lyang1/poky/meta/lib/oeqa/utils/logparser.py", line 113, in log_as_files prefix += section TypeError: Can't convert 'NoneType' object to str implicitly [YOCTO #11547] Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/utils/logparser.py b/meta/lib/oeqa/utils/logparser.py index 4355ce0b767..0670627c3c0 100644 --- a/meta/lib/oeqa/utils/logparser.py +++ b/meta/lib/oeqa/utils/logparser.py @@ -109,7 +109,7 @@ class Result(object): prefix = '' for x in test_status: prefix +=x+'.' - if (section != ''): + if section: prefix += section section_file = os.path.join(target_dir, prefix) # purge the file contents if it exists