Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 7dd1888

Browse files
authored
Merge pull request #175 from Daic115/master
Fix UnicodeDecodeError when installing, Update setup.py
2 parents 838ef13 + 4524c50 commit 7dd1888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def main():
1010
"""Cloudflare API code - setup.py file"""
1111

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

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

0 commit comments

Comments
 (0)