doc: fix build with python 3.8
authorThomas Monjalon <thomas@monjalon.net>
Mon, 9 Dec 2019 20:43:12 +0000 (21:43 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 12 Dec 2019 22:18:10 +0000 (23:18 +0100)
commit878f99d1142d861ad9e301a461ed7a05b32b7900
tree9cb30693c4837e926bd93d54835385a627e10736
parentaef1d0733179afb56916e95058a4f1398b81af04
doc: fix build with python 3.8

After upgrading to python-3.8.0, a syntax mismatch is revealed:

doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal.
    Did you mean "!="?
    if value is not '':

Removing "is not ''" seems the right thing to do.

A patch may also be needed in the RTD theme package:
https://github.com/readthedocs/sphinx_rtd_theme/commit/a49a812c.diff
(not included in release 0.4.3)

Fixes: 9db3f52126fb ("doc: generate NIC overview table from ini files")
Cc: stable@dpdk.org
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
doc/guides/conf.py