1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00

setup: force reading readme encoding to utf-8

This commit is contained in:
Johan Andersson 2020-09-20 17:29:28 +02:00
parent 882c7f4ec9
commit e92ebbbcab

View File

@ -29,7 +29,7 @@ about = {}
with open(os.path.join(srcdir, "svtplay_dl", "__version__.py")) as f:
exec(f.read(), about)
with open("README.md") as f:
with open("README.md", encoding="utf-8") as f:
readme = f.read()
deps = []