From 7ea38c36da9c078b1429905bd405e037d3b4ac2f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 29 Aug 2017 02:27:11 -0400 Subject: [PATCH] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 16513c4..9e7354d 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ class PublishCommand(Command): pass self.status('Building Source and Wheel (universal) distribution…') - os.system('{0} setup.py sdist bdist_wheel --universal '.format(sys.executable)) + os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable)) self.status('Uploading the package to PyPi via Twine…') os.system('twine upload dist/*')