diff options
author | 2023-01-30 18:33:54 -0800 | |
---|---|---|
committer | 2023-01-31 20:36:03 -0800 | |
commit | 981cbcb030d919ee49ebbfc2889839c6882d9ea7 (patch) | |
tree | a41b01fa7e86dec309f68eecaa2d4ec6fbdb47cd /tools/net/ynl/cli.py | |
parent | docs: netlink: add a starting guide for working with specs (diff) | |
download | linux-rng-981cbcb030d919ee49ebbfc2889839c6882d9ea7.tar.xz linux-rng-981cbcb030d919ee49ebbfc2889839c6882d9ea7.zip |
tools: net: use python3 explicitly
The scripts require Python 3 and some distros are dropping
Python 2 support.
Reported-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools/net/ynl/cli.py')
-rwxr-xr-x | tools/net/ynl/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/cli.py b/tools/net/ynl/cli.py index e64f1478764f..db410b74d539 100755 --- a/tools/net/ynl/cli.py +++ b/tools/net/ynl/cli.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: BSD-3-Clause import argparse |