From 29aedf011617c886bb55143ad627d858880652dc Mon Sep 17 00:00:00 2001 From: Blue Fox Date: Mon, 6 Nov 2023 05:27:24 +0000 Subject: [PATCH] Fixed typo --- http_downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_downloader.py b/http_downloader.py index a896a57..6479e92 100755 --- a/http_downloader.py +++ b/http_downloader.py @@ -41,7 +41,7 @@ if __name__ == "__main__": if len(sys.argv) > 2: print(f"[WARNING] Only the first argument given will be used ({sys.argv[1]})") - # now sys.argv is shurely 2 elements in length; let the real process begin + # now sys.argv is surely 2 elements in length; let the real process begin try: with open(sys.argv[1]) as f: print(f"Opened {sys.argv[1]}, reading...")