blob: e5f940699727acceee0154b2fc6bc65e47fc4761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
+++ a/setup.py
--- b/setup.py
@@ -26,7 +26,7 @@
def get_changelog():
- text = open(os.path.join(here, 'CHANGELOG')).read()
+ text = open(os.path.join(here, 'CHANGELOG'),encoding='utf-8').read()
header_matches = list(re.finditer('^-+$', text, re.MULTILINE))
# until fifth header
text = text[:header_matches[5].start()]
|