usertools: fix syntax warning in python 3.8
authorThomas Faivre <thomas.faivre@6wind.com>
Wed, 12 Feb 2020 12:31:56 +0000 (13:31 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 16 Feb 2020 20:59:24 +0000 (21:59 +0100)
commite1766e7b0c9b4ad30b330677f2376a05b3b46f0c
tree98da3e1c7ef8b71fb642df9ae10edf42c8b7fdf0
parent9ed8e95cc7400e31a5c9a7fcc7262f3ff1f3be33
usertools: fix syntax warning in python 3.8

Silent the following warning when running script with python 3.8:

> /usr/bin/dpdk-pmdinfo:542: SyntaxWarning: "is" with a literal.
> Did you mean "=="?
>   if (autoload_path is None or autoload_path is ""):

As autoload_path can only be None or a string, directly check its bool
value.

Fixes: c67c9a5c646a ("tools: query binaries for HW and other support information")
Cc: stable@dpdk.org
Signed-off-by: Thomas Faivre <thomas.faivre@6wind.com>
usertools/dpdk-pmdinfo.py