usertools: replace string.split
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 4 Nov 2020 06:48:36 +0000 (22:48 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 22 Nov 2020 21:04:10 +0000 (22:04 +0100)
commitecdd471171f0aba58f42ad72701a90c881d4c12e
treef5ef9be742bacbcb4f82a01df2f147e4f5f468a8
parent4c3a535ede4a6d6aa0ade6d15d3a58a0ad9b5fdd
usertools: replace string.split

In python3 the standard way to split strings is to use the
split() on the string object itself. The old way is broken
and would cause a traceback.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
usertools/dpdk-pmdinfo.py