Commit 1980d630 authored by Gal Pressman's avatar Gal Pressman

tcptracer: Fix argparse is not defined error

argparse is imported as ap, using argparse explicitly results in a name
not defined error.
Signed-off-by: default avatarGal Pressman <galp@mellanox.com>
parent b334f110
......@@ -33,7 +33,7 @@ parser.add_argument("-N", "--netns", default=0, type=int,
parser.add_argument("-v", "--verbose", action="store_true",
help="include Network Namespace in the output")
parser.add_argument("--ebpf", action="store_true",
help=argparse.SUPPRESS)
help=ap.SUPPRESS)
args = parser.parse_args()
bpf_text = """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment