Skip to content

Commit d7ec09c

Browse files
committed
🐛 fix on-ASCII character '\xe2' in file setup.py on line 81, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
1 parent f57f7ed commit d7ec09c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ def finalize_options(self):
7878

7979
def run(self):
8080
try:
81-
self.status('Removing previous builds')
81+
self.status('Removing previous builds...')
8282
rmtree(os.path.join(here, 'dist'))
8383
except OSError:
8484
pass
8585

86-
self.status('Building Source and Wheel (universal) distribution')
86+
self.status('Building Source and Wheel (universal) distribution...')
8787
if os.system(GS_COMMAND) == 0:
8888
os.system(PUBLISH_COMMAND)
8989

0 commit comments

Comments
 (0)