Use correct name in usage message

This commit is contained in:
Jeffrey Serio 2024-12-04 13:09:37 -06:00
parent 9c331dbdda
commit f9edea436a
2 changed files with 2 additions and 2 deletions

View File

@ -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}"

View File

@ -1,6 +1,6 @@
[project]
name = "print-wp-sources"
version = "0.3"
version = "0.4"
authors = [
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
]