mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-23 21:21:23 -05:00
fix subprocess.call syntax
This commit is contained in:
parent
9a75f39bc0
commit
1165bd8c56
2
setup.py
2
setup.py
@ -9,7 +9,7 @@ except ImportError:
|
|||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
if sys.argv[-1] == 'publish':
|
if sys.argv[-1] == 'publish':
|
||||||
subprocess.call('python setup.py sdist upload --sign')
|
subprocess.call(['python', 'setup.py', 'sdist', 'upload', '--sign'])
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
Loading…
Reference in New Issue
Block a user