Print exception message.

This commit is contained in:
Gonzalo Exequiel Pedone 2021-02-11 14:40:32 -03:00
parent a2beefd77f
commit aa96d6d5dd
No known key found for this signature in database
GPG key ID: B8B09E63E9B85BAF

View file

@ -28,8 +28,8 @@ if __name__ =='__main__':
while True: while True:
try: try:
deploy = __import__('deploy_' + system).Deploy() deploy = __import__('deploy_' + system).Deploy()
except: except Exception as e:
print('No valid deploy script found.') print('No valid deploy script found: ', e)
exit() exit()