fix subprocess.call syntax

This commit is contained in:
Micah Lee 2014-05-24 21:39:27 -04:00
parent 9a75f39bc0
commit 1165bd8c56

View File

@ -9,7 +9,7 @@ except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
subprocess.call('python setup.py sdist upload --sign')
subprocess.call(['python', 'setup.py', 'sdist', 'upload', '--sign'])
sys.exit()
setup(