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:
|
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()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue