setup.py read function fix

This commit is contained in:
Marcus Smith 2013-01-25 23:08:09 -08:00
parent 7f1362412f
commit 9868bc38b0
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return codecs.open(os.path.join(here, *parts), 'r', 'utf8').read()
return codecs.open(os.path.join(here, *parts), 'r').read()
def find_version(*file_paths):
version_file = read(*file_paths)