mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 01:03:04 +01:00
Work around a Python bug on Windows with UTF-8 configuration (#820)
This commit is contained in:
parent
480b6c1e8b
commit
0d94f2474c
@ -30,6 +30,7 @@
|
||||
|
||||
__license__ = 'Public Domain'
|
||||
|
||||
import codecs
|
||||
import getpass
|
||||
import optparse
|
||||
import os
|
||||
@ -335,6 +336,11 @@ def _find_term_columns():
|
||||
return parser, opts, args
|
||||
|
||||
def _real_main(argv=None):
|
||||
# Compatibility fixes for Windows
|
||||
if sys.platform == 'win32':
|
||||
# https://github.com/rg3/youtube-dl/issues/820
|
||||
codecs.register(lambda name: codecs.lookup('utf-8') if name == 'cp65001' else None)
|
||||
|
||||
parser, opts, args = parseOpts(argv)
|
||||
|
||||
# Open appropriate CookieJar
|
||||
|
Loading…
Reference in New Issue
Block a user