Selaa lähdekoodia

Fix setup.py open file in case utf-8 path (thanks to edvm for the report)

Denis K 9 vuotta sitten
vanhempi
commit
d3dd5e24c1
2 muutettua tiedostoa jossa 8 lisäystä ja 2 poistoa
  1. 1 0
      CHANGELOG.rst
  2. 7 2
      setup.py

+ 1 - 0
CHANGELOG.rst

@@ -5,6 +5,7 @@ Changelog
 -----
 * [Fix] Issue-10: Fixed ability to display multiple admin form fields on the same line (thanks to blueicefield for the report)
 * [Fix] Fixed broken auth page layout for some translations
+* [Fix] Issue-11: Fixed setup.py open file in case utf-8 path (thanks to edvm for the report)
 
 
 0.1.0

+ 7 - 2
setup.py

@@ -1,9 +1,14 @@
 import os
-from setuptools import setup, find_packages 
+from setuptools import setup, find_packages
 
 
 def read(fname):
-    return open(os.path.join(os.path.dirname(__file__), fname)).read()
+    path = os.path.join(os.path.dirname(__file__), fname)
+    try:
+        file = open(path, encoding='utf-8')
+    except TypeError:
+        file = open(path)
+    return file.read()
 
 
 def get_install_requires():