Fixed a typo.

This commit is contained in:
Xavier Ordoquy 2015-02-06 10:23:58 +01:00
parent 75ff754517
commit 9dd97a0ee5

View File

@ -48,7 +48,7 @@ if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip freeze | grep twine")
if os.system("pip freeze | grep twine"):
print("twine not installed.\nUse `pip install twine`.\nExiting.")
sys.exit()
os.system("python setup.py sdist bdist_wheel")