startvms: Correct final exit code

master
Dustin C. Hatch 2014-12-03 22:55:39 -06:00
parent 84b66c8411
commit 380aa823d9
1 changed files with 1 additions and 1 deletions

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__':