diff options
Diffstat (limited to 'hypodermic/main.py')
| -rw-r--r-- | hypodermic/main.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hypodermic/main.py b/hypodermic/main.py index 0f77de5..635e3a7 100644 --- a/hypodermic/main.py +++ b/hypodermic/main.py @@ -55,9 +55,14 @@ def main(): usage="%(prog)s [-a pid] [-c path] [options]", description="Don't share needles, brah!" ) + parser._positionals.title = "Positional Arguments" parser._optionals.title = "Optional Arguments" parser.add_argument( + "target", + help="The target shared object to inject." + ) + parser.add_argument( "-q", "--quiet", help="Suppress everything but critical output" |