summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorStefan Behnel <scoder@users.berlios.de>2011-04-11 09:14:56 +0200
committerStefan Behnel <scoder@users.berlios.de>2011-04-11 09:14:56 +0200
commitcfbae1d832459a91106d9c6bc217f51df0fca2b3 (patch)
tree441736af83b08ad8cd9d0a1594ddefe58d79733a /bin
parent73009ce2a49154760ffb73b51dd181c6221202cb (diff)
downloadcython-cfbae1d832459a91106d9c6bc217f51df0fca2b3.tar.gz
fix copy&paste bug in cythonrun
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cythonrun2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cythonrun b/bin/cythonrun
index 0cd1c2898..9f0970ae9 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)