Skip to content

Commit

Permalink
Merge pull request iovisor#1574 from GalPressman/tcptracer-fix
Browse files Browse the repository at this point in the history
tcptracer: Fix argparse is not defined error
  • Loading branch information
brendangregg authored Feb 5, 2018
2 parents 277657e + 1980d63 commit 40a0aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tcptracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
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 = """
Expand Down

0 comments on commit 40a0aee

Please sign in to comment.