Merge pull request #79 from robcarrington/fix-setup

Fixed setup.py bug by turning encoding into a keyword argument. Encod…
This commit is contained in:
2017-05-30 22:12:00 -04:00
committed by GitHub
+1 -1
View File
@@ -39,7 +39,7 @@ packages = [
# About dict to store version and package info
about = dict()
with open(os.path.join(here, 'maya', '__version__.py'), 'r', 'utf-8') as f:
with open(os.path.join(here, 'maya', '__version__.py'), 'r', encoding='utf-8') as f:
exec(f.read(), about)
setup(