From: pukkandan Date: Tue, 8 Mar 2022 20:09:47 +0000 (+0530) Subject: [build] Fix bug in 08d30158ec8e7e08c1d83dcfde6dba18c95b2640 X-Git-Tag: 2022.03.08.1~2 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/aee6ce5867c59214df2381fc1a46b7096dc8c26d [build] Fix bug in 08d30158ec8e7e08c1d83dcfde6dba18c95b2640 --- diff --git a/setup.py b/setup.py index 98781c5da..503599c76 100644 --- a/setup.py +++ b/setup.py @@ -21,9 +21,9 @@ LONG_DESCRIPTION = '\n\n'.join(( 'Official repository: ', '**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']: