summaryrefslogtreecommitdiffstats
path: root/scripts/packager.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/packager.py')
-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))