mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-03 23:15:18 -04:00
fix subprocess.call syntax
This commit is contained in:
parent
9a75f39bc0
commit
1165bd8c56
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue