Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eb2b400

Browse files
committed
fixes encoding problem
1 parent 6c9c736 commit eb2b400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# SOFTWARE.
2424

2525
# execfile() doesn't exist in Python 3, this way we are compatible with both.
26-
exec(compile(open('zerorpc/version.py').read(), 'zerorpc/version.py', 'exec'))
26+
exec(compile(open('zerorpc/version.py', encoding='utf8').read(), 'zerorpc/version.py', 'exec'))
2727

2828
import sys
2929

0 commit comments

Comments
 (0)