--- pythonfinder-1.2.0/setup.py.orig 2019-03-07 11:23:59.616077036 +0700 +++ pythonfinder-1.2.0/setup.py 2019-03-07 11:28:00.449877443 +0700 @@ -49,11 +49,11 @@ pass def run(self): - self.status('Building Source distribution…') + self.status('Building Source distribution.') os.system('{0} setup.py sdist'.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/*') - self.status('Pushing git tags…') + self.status('Pushing git tags.') os.system('git tag v{0}'.format(find_version("src", "pythonfinder", "__init__.py"))) os.system('git push --tags') sys.exit()