From: Scott Worley Date: Wed, 20 Dec 2023 06:07:37 +0000 (-0800) Subject: Project Lawful start URL in --help X-Git-Url: http://git.scottworley.com/paperdoorknob/commitdiff_plain/c04b2e7812ebd48c2d9273122deef888483bc9f6 Project Lawful start URL in --help --- diff --git a/args.py b/args.py index 2198a1d..fb36083 100644 --- a/args.py +++ b/args.py @@ -45,7 +45,9 @@ def _command_line_parser() -> ArgumentParser: '--timeout', help='How long to wait for HTTP requests, in seconds', default=30) - parser.add_argument('url', help='URL to retrieve') + parser.add_argument( + 'url', + help='URL to retrieve (example: https://www.projectlawful.com/posts/4582 )') return parser