From 380aa823d94ffebf94cd1d932971456bfcda87ac Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 3 Dec 2014 22:55:39 -0600 Subject: [PATCH] startvms: Correct final exit code --- startvms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startvms.py b/startvms.py index 84a5565..89ae34b 100644 --- a/startvms.py +++ b/startvms.py @@ -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__':