Commit 40a0aee6 authored by Brendan Gregg's avatar Brendan Gregg Committed by GitHub

Merge pull request #1574 from GalPressman/tcptracer-fix

tcptracer: Fix argparse is not defined error
parents 277657e4 1980d630
...@@ -33,7 +33,7 @@ parser.add_argument("-N", "--netns", default=0, type=int, ...@@ -33,7 +33,7 @@ parser.add_argument("-N", "--netns", default=0, type=int,
parser.add_argument("-v", "--verbose", action="store_true", parser.add_argument("-v", "--verbose", action="store_true",
help="include Network Namespace in the output") help="include Network Namespace in the output")
parser.add_argument("--ebpf", action="store_true", parser.add_argument("--ebpf", action="store_true",
help=argparse.SUPPRESS) help=ap.SUPPRESS)
args = parser.parse_args() args = parser.parse_args()
bpf_text = """ 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