diff options
Diffstat (limited to 'tools/report')
-rw-r--r-- | tools/report/report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/report/report.py b/tools/report/report.py index 4d892075..b3f15c1b 100644 --- a/tools/report/report.py +++ b/tools/report/report.py @@ -67,7 +67,7 @@ def _get_env(result, versions): 'vswitch': _get_version(S.getValue('VSWITCH'), versions), } - if S.getValue('VSWITCH').lower().count('dpdk'): + if str(S.getValue('VSWITCH')).lower().count('dpdk'): env.update({'dpdk': _get_version('dpdk', versions)}) if result[ResultsConstants.DEPLOYMENT].count('v'): |