summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index fab0326..b4ec763 100755
--- a/setup.py
+++ b/setup.py
@@ -80,7 +80,7 @@ class set_version(core.Command):
newline = re.sub(pattern %f[1], '"%s"' % ver, line, 1)
if newline != line:
#log.info("%s: %s" % (f, newline))
- print("%s: %s" % (f[0], newline.strip('\n')))
+ print("%s: %s" % (f[0], newline.encode('utf_8').strip('\n')))
updated_file.append(newline)
with io.open(f[0], 'w', 1, 'utf_8') as s:
s.writelines(updated_file)