From 31957f40f07e9ef985afb6dc23761f717d1aa4b5 Mon Sep 17 00:00:00 2001 From: "Jeremie J. Jarosh" Date: Sat, 15 Apr 2023 11:52:33 -0500 Subject: [PATCH] Make it clear `https://` needs to exist to download a specific game --- itchiodl/downloader/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itchiodl/downloader/__main__.py b/itchiodl/downloader/__main__.py index c5fe946..af28212 100644 --- a/itchiodl/downloader/__main__.py +++ b/itchiodl/downloader/__main__.py @@ -46,7 +46,7 @@ def main(): parser.add_argument( "--download-game", type=str, - help="Download a specific game, should be in the format publisher.itch.io/game", + help="Download a specific game, should be in the format 'https://publisher.itch.io/game'", ) args = parser.parse_args()