startvms: Correct final exit code

This commit is contained in:
Dustin C. Hatch
2014-12-03 22:55:39 -06:00
parent 84b66c8411
commit 380aa823d9

View File

@@ -175,7 +175,7 @@ def main():
error = True
log.error('{0}'.format(e))
continue
raise SystemExit(int(not error))
raise SystemExit(int(error))
if __name__ == '__main__':