From 61b2b68bd5bbbb58f9d47e0e6799f07f61db2f1c Mon Sep 17 00:00:00 2001 From: Jan Vlcinsky Date: Fri, 13 Apr 2018 23:33:39 +0200 Subject: [PATCH] Remove utf-8 chars "..." from `setup.py` --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0ca057b..f5ad225 100644 --- a/setup.py +++ b/setup.py @@ -32,15 +32,15 @@ class PublishCommand(Command): def run(self): try: - self.status('Removing previous builds…') + self.status('Removing previous builds...') rmtree(os.path.join(here, 'dist')) except FileNotFoundError: pass - self.status('Building Source and Wheel (universal) distribution…') + self.status('Building Source and Wheel (universal) distribution...') os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable)) - self.status('Uploading the package to PyPi via Twine…') + self.status('Uploading the package to PyPi via Twine...') os.system('twine upload dist/*') sys.exit()