mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[build] Fix bug in 08d30158ec
This commit is contained in:
parent
d1b5f70bc9
commit
aee6ce5867
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -21,9 +21,9 @@
|
||||||
LONG_DESCRIPTION = '\n\n'.join((
|
LONG_DESCRIPTION = '\n\n'.join((
|
||||||
'Official repository: <https://github.com/yt-dlp/yt-dlp>',
|
'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',
|
'**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']:
|
if sys.argv[1:2] == ['py2exe']:
|
||||||
|
|
Loading…
Reference in a new issue