summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-02-18 01:55:26 -0500
committerGitHub <noreply@github.com>2023-02-18 01:55:26 -0500
commitf89b243589b5d0e0a3dfe75337a66fa1091d0434 (patch)
treeddc401aac04839252a55d1e46a9d246ab2c0366c /scripts
parentedc61d428c9045982030cf2b54ea20ef8cd5baab (diff)
feature: support 3-char hex colours (#1022)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/packager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/packager.py b/scripts/packager.py
index 30f56182..8a4a8b4e 100644
--- a/scripts/packager.py
+++ b/scripts/packager.py
@@ -34,7 +34,7 @@ def get_hash(deployment_file):
elif str.lower(hash_type) == "sha1":
deployment_hash = hashlib.sha1(deployment_file.read()).hexdigest()
else:
- print('Unsupported hash format "%s". Please use SHA512, SHA256, or SHA1.', hash_type)
+ print('Unsupported hash format "%s". Please use SHA512, SHA256, or SHA1.', hash_type)
exit(1)
print("Generated hash: %s" % str(deployment_hash))