From f9edea436a157d7d5627d5558a3bee5d854052ce Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Wed, 4 Dec 2024 13:09:37 -0600 Subject: [PATCH] Use correct name in usage message --- print_wp_sources.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/print_wp_sources.py b/print_wp_sources.py index 1a6ac46..cfe6d3e 100644 --- a/print_wp_sources.py +++ b/print_wp_sources.py @@ -7,7 +7,7 @@ from bs4 import BeautifulSoup def main(): if len(sys.argv) != 2: - exit("Usage: dl_wp_pdf ARTICLE_NAME") + exit("Usage: print-wp-sources ARTICLE_NAME") article = sys.argv[1] url = f"https://en.wikipedia.org/wiki/{article}" diff --git a/pyproject.toml b/pyproject.toml index 1f9823b..26c5818 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "print-wp-sources" -version = "0.3" +version = "0.4" authors = [ { name="Jeffrey Serio", email="hyperreal@fedoraproject.org" }, ]