Strip empty strings.

This commit is contained in:
Pedro Algarvio 2014-04-30 00:41:18 +01:00
parent a13632cd46
commit 38493bae47

View file

@ -386,7 +386,7 @@ def run(opts):
delete_vm(opts)
sys.exit(retcode)
if not stdout:
if not stdout.strip():
print('Failed to get the bootstrapped minion version(no output). Exit code: {0}'.format(retcode))
sys.stdout.flush()
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ: