Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
fix `UnicodeDecodeError: 'gbk' codec can't decode byte 0x88 in position 16820: illegal multibyte sequence` when install
  • Loading branch information
Daic115 committed Nov 15, 2023
1 parent 419c90b commit 4524c50
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 4524c50

Please sign in to comment.