Skip to content

Commit

Permalink
Merge pull request #175 from Daic115/master
Browse files Browse the repository at this point in the history
Fix UnicodeDecodeError when installing, Update setup.py
  • Loading branch information
mahtin committed Nov 25, 2023
2 parents 838ef13 + 4524c50 commit 7dd1888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
def main():
"""Cloudflare API code - setup.py file"""

with open('README.md') as read_me:
with open('README.md', encoding="utf-8") as read_me:
long_description = read_me.read()

with open('CloudFlare/__init__.py', 'r') as f:
Expand Down

0 comments on commit 7dd1888

Please sign in to comment.