Skip to content

Commit 755f7d6

Browse files
committed
revert changes to read long_description
1 parent 5a79efd commit 755f7d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) 2018 - The MITRE Corporation
44
# For license information, see the LICENSE.txt file
55

6-
6+
from io import open # Allow `encoding` kwarg on Python 2.7
77
from os.path import abspath, dirname, join
88

99

@@ -23,7 +23,7 @@ def get_version():
2323

2424

2525
def get_long_description():
26-
with open('README.rst') as f:
26+
with open('README.rst', encoding='utf-8') as f:
2727
return f.read()
2828

2929

0 commit comments

Comments
 (0)