Print exception message.
This commit is contained in:
parent
a2beefd77f
commit
aa96d6d5dd
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ if __name__ =='__main__':
|
|||
while True:
|
||||
try:
|
||||
deploy = __import__('deploy_' + system).Deploy()
|
||||
except:
|
||||
print('No valid deploy script found.')
|
||||
except Exception as e:
|
||||
print('No valid deploy script found: ', e)
|
||||
|
||||
exit()
|
||||
|
||||
|
|
Loading…
Reference in a new issue