]> git.scottworley.com Git - paperdoorknob/commitdiff
Project Lawful start URL in --help
authorScott Worley <scottworley@scottworley.com>
Wed, 20 Dec 2023 06:07:37 +0000 (22:07 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 20 Dec 2023 06:07:37 +0000 (22:07 -0800)
args.py

diff --git a/args.py b/args.py
index 2198a1dae5e13a50ce23269093d3414072d66227..fb36083b28b9bcf852d37963f8b53c33760819d3 100644 (file)
--- 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