From 8f737a74b203442281bfb29330fdbd31bc9aba9b Mon Sep 17 00:00:00 2001 From: Sylvain Th?nault Date: Fri, 26 Jul 2013 11:28:18 +0200 Subject: [packaging] fix regression introduced by aefd37dbb754 leading to crash when installing python3 version of the lib on a linux platform --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8f27b3b..9ac5255 100644 --- a/setup.py +++ b/setup.py @@ -143,7 +143,7 @@ class MyBuildPy(build_py): # brackets are NOT optional here for py3k compat print('running 2to3 on', dest) # Needs `shell=True` to run on Windows. - check_call(['2to3', '-wn', dest], shell=True) + check_call(['2to3', '-wn', dest], shell=sys.platform=='win32') def install(**kwargs): -- cgit v1.2.1