Skip to content

Commit

Permalink
fix utf-8 encoding when reading the readme.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
chananshgong committed Jan 31, 2017
1 parent cf9d4f0 commit 54a1377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from setuptools import setup

with open('README.rst') as readme_file:
with open('README.rst', encoding="utf8") as readme_file:
readme = readme_file.read()

setup(
Expand Down

0 comments on commit 54a1377

Please # to comment.