Use correct name in usage message

This commit is contained in:
Jeffrey Serio 2024-12-04 22:57:01 -06:00
parent 52766fabbb
commit 115855d365
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) != 3:
exit("Usage: fetch-sh-source SCIHUB_URL ARTICLE_URL")
exit("Usage: dl-sh-source SCIHUB_URL ARTICLE_URL")
scihub = sys.argv[1]
article = sys.argv[2]

View File

@ -1,6 +1,6 @@
[project]
name = "dl-sh-source"
version = "0.2"
version = "0.3"
authors = [
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
]