Fixed setup.py bug by turning encoding into a keyword argument. Encoding parameter was being passed in the position belonging to the buffering parameter

This commit is contained in:
Robert Carrington
2017-05-30 21:03:35 -05:00
parent c56c552184
commit 28ecad81bd
+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(