forked from LBRYCommunity/lbry-sdk
fix setup.py
`.decode('utf-8')` is unnecessary and breaks on Python 3
This commit is contained in:
parent
d840b107c8
commit
95e503cf1f
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -50,7 +50,7 @@ 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().decode('utf-8')
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name=package_name,
|
||||
|
|
Loading…
Reference in a new issue