]> jfr.im git - yt-dlp.git/commitdiff
[build] Fix bug in 08d30158ec8e7e08c1d83dcfde6dba18c95b2640
authorpukkandan <redacted>
Tue, 8 Mar 2022 20:09:47 +0000 (01:39 +0530)
committerpukkandan <redacted>
Tue, 8 Mar 2022 20:09:47 +0000 (01:39 +0530)
setup.py

index 98781c5dabad8263dfecec3f3e5d02c9c54ef3b4..503599c76160714fad98e98ae18a96b14e24c587 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -21,9 +21,9 @@
 LONG_DESCRIPTION = '\n\n'.join((
     'Official repository: <https://github.com/yt-dlp/yt-dlp>',
     '**PS**: Some links in this document will not work since this is a copy of the README.md from Github',
-    open('README.md').read()))
+    open('README.md', encoding='utf-8').read()))
 
-REQUIREMENTS = open('requirements.txt').read().splitlines()
+REQUIREMENTS = open('requirements.txt', encoding='utf-8').read().splitlines()
 
 
 if sys.argv[1:2] == ['py2exe']: