Skip to content

Commit

Permalink
v1.4.1: Correct word
Browse files Browse the repository at this point in the history
  • Loading branch information
KorewaLidesu committed Dec 21, 2023
1 parent b4ae31a commit 7d55deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
print('Installer URL: ' + installerURL)
response = requests.get(installerURL)
if not response.ok:
print('Response filed. Code: ' + str(response.status_code))
print('Response failed. Code: ' + str(response.status_code))
sys.exit(1)
print('Downloading installer')
open(os.path.join(cache_path, 'installer.zip'), 'wb').write(response.content)
Expand Down

0 comments on commit 7d55deb

Please sign in to comment.