aboutsummaryrefslogtreecommitdiffstats
path: root/walker.py
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2023-07-12 18:25:16 +0100
committergarret <garret@airmail.cc>2023-07-13 08:06:22 +0100
commit1174cd7fcd5693eea26c42f299cb2d6168a7c08a (patch)
tree45b48660ed26e4295e045dcd2cb898679fe8ee0f /walker.py
parent3719daf65c0ef008284762fd592cdcdcb939ae9e (diff)
downloadcomicwalker-dl-1174cd7fcd5693eea26c42f299cb2d6168a7c08a.tar.gz
comicwalker-dl-1174cd7fcd5693eea26c42f299cb2d6168a7c08a.tar.bz2
comicwalker-dl-1174cd7fcd5693eea26c42f299cb2d6168a7c08a.zip
update argparse help
Diffstat (limited to 'walker.py')
-rw-r--r--walker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/walker.py b/walker.py
index 26cd08a..2573725 100644
--- a/walker.py
+++ b/walker.py
@@ -10,8 +10,8 @@ import urllib.parse
from binascii import unhexlify
parser = argparse.ArgumentParser()
-parser.add_argument('cid', help='content id, &cid={...}. see url when reading a chapter')
-parser.add_argument('-v', '--verbose', help='no progressive download logs on terminal', action="store_true")
+parser.add_argument('cid', help='content id, chapter URL, or series URL')
+parser.add_argument('-v', '--verbose', help='log more', action="store_true")
args = parser.parse_args()
logging.basicConfig(format='[%(levelname)s] %(asctime)s: %(message)s', datefmt='%Y-%m-%d %H:%M:%S', level=logging.INFO)