unify behavior

This commit is contained in:
Ofek Lev 2017-08-28 14:32:55 -04:00 committed by GitHub
parent 95e503cf1f
commit 780044ebd6

View file

@ -49,8 +49,8 @@ def package_files(directory):
package_name = "lbrynet"
base_dir = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(base_dir, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(base_dir, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
setup(
name=package_name,