From 22033a77c699fc0ccd49d4b7e86290b4e956ff0e Mon Sep 17 00:00:00 2001 From: itachi Date: Fri, 2 Sep 2016 01:37:24 +0100 Subject: [PATCH] issue#34 --- maybe/maybe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maybe/maybe.py b/maybe/maybe.py index 3c60446..0e05670 100644 --- a/maybe/maybe.py +++ b/maybe/maybe.py @@ -248,7 +248,7 @@ def main(argv=sys.argv[1:]): # Ctrl+C does not print a newline automatically print("") if choice.lower() == "y": - subprocess.call(args.command) + return subprocess.call(args.command) else: print("%s has not detected any file system operations from %s." % (T.bold("maybe"), T.bold(command)))