From f2f195f43edac641430b1f423adf7ed93c2035f5 Mon Sep 17 00:00:00 2001 From: wilsonianb Date: Wed, 18 May 2016 15:23:14 -0700 Subject: [PATCH] Use sys.exit() in Manifests.py to run as program --- bin/python/Manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/python/Manifest.py b/bin/python/Manifest.py index 31f3f0ce16..002104cf2f 100755 --- a/bin/python/Manifest.py +++ b/bin/python/Manifest.py @@ -4,4 +4,4 @@ import sys from ripple.util import Sign result = Sign.run_command(sys.argv[1:]) -exit(0 if result else -1) +sys.exit(0 if result else -1)