From 9779b89f7a8d8f48ec93674bae43db9eadedf5a3 Mon Sep 17 00:00:00 2001 From: "Jeremie J. Jarosh" Date: Sat, 15 Apr 2023 10:15:26 -0500 Subject: [PATCH] Update `--help` Description Update the output of `--help` so it returns `itch-download` as the program name, and returns an accurate description of what the program does. --- itchiodl/downloader/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/itchiodl/downloader/__main__.py b/itchiodl/downloader/__main__.py index 164f9bf..c5fe946 100644 --- a/itchiodl/downloader/__main__.py +++ b/itchiodl/downloader/__main__.py @@ -6,7 +6,9 @@ import itchiodl def main(): - parser = argparse.ArgumentParser(prog="python -m hstp", description="Build an ") + parser = argparse.ArgumentParser( + prog="itch-download", description="Download / archive your itch.io library." + ) parser.add_argument( "-k", "--api-key", help="Use API key instead of username/password"