diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-03-09 01:39:47 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-03-09 01:39:47 +0530 |
commit | aee6ce5867c59214df2381fc1a46b7096dc8c26d (patch) | |
tree | 92531ee80212f8da895d107a12f4fdece0cf6e20 /setup.py | |
parent | d1b5f70bc9f9dcda1544b88b42ecc25f7f7aa1c7 (diff) | |
download | hypervideo-pre-aee6ce5867c59214df2381fc1a46b7096dc8c26d.tar.lz hypervideo-pre-aee6ce5867c59214df2381fc1a46b7096dc8c26d.tar.xz hypervideo-pre-aee6ce5867c59214df2381fc1a46b7096dc8c26d.zip |
[build] Fix bug in 08d30158ec8e7e08c1d83dcfde6dba18c95b2640
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,9 +21,9 @@ DESCRIPTION = 'A youtube-dl fork with additional features and patches' 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']: |