diff options
| author | Brett Cannon <brcan@microsoft.com> | 2019-12-06 11:12:20 -0800 |
|---|---|---|
| committer | Brett Cannon <brcan@microsoft.com> | 2019-12-06 11:12:20 -0800 |
| commit | 6ef7577baf8a99539d4c2e3965c4797c6ea5d318 (patch) | |
| tree | 7c5bbac7ebb67871395fbcf0edd49f9c38bf9903 /setup.py | |
| parent | 0a1cd6f8adf44f7cbe1717e4db44fec364f4e272 (diff) | |
| download | platform_external_python_uritemplates-6ef7577baf8a99539d4c2e3965c4797c6ea5d318.tar.gz platform_external_python_uritemplates-6ef7577baf8a99539d4c2e3965c4797c6ea5d318.tar.bz2 platform_external_python_uritemplates-6ef7577baf8a99539d4c2e3965c4797c6ea5d318.zip | |
Specify file encodings
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,10 +6,10 @@ packages = [ 'uritemplate' ] -with open("README.rst") as file: +with open("README.rst", encoding="utf-8") as file: readme = file.read() -with open("HISTORY.rst") as file: +with open("HISTORY.rst", encoding="utf-8") as file: history = file.read() setup( |
