From cfbae1d832459a91106d9c6bc217f51df0fca2b3 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 11 Apr 2011 09:14:56 +0200 Subject: [PATCH] fix copy&paste bug in cythonrun --- bin/cythonrun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cythonrun b/bin/cythonrun index 0cd1c289..9f0970ae 100755 --- a/bin/cythonrun +++ b/bin/cythonrun @@ -32,7 +32,7 @@ def runcmd(cmd, shell=True): cmd = ' '.join(cmd) if DEBUG: print(cmd) - returncode = subprocess.call(cmd, shell=True) + returncode = subprocess.call(cmd, shell=shell) if returncode: sys.exit(returncode) -- 2.26.2