Add #! line to the top of the script and mark it as executable so it can be run directly rather than having to pass it to python interpreter.
Signed-off-by: Bruce Richardson <[email protected]> --- usertools/dpdk-telemetry-client.py | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 usertools/dpdk-telemetry-client.py diff --git a/usertools/dpdk-telemetry-client.py b/usertools/dpdk-telemetry-client.py old mode 100644 new mode 100755 index 6dcf62bac..ce0c7a905 --- a/usertools/dpdk-telemetry-client.py +++ b/usertools/dpdk-telemetry-client.py @@ -1,3 +1,4 @@ +#! /usr/bin/env python # SPDK-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation -- 2.20.1

