diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-05-04 07:09:50 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-05-04 07:09:50 +0200 |
commit | 0d94f2474c9fa280b3ae2d6827bac0adf0d2d597 (patch) | |
tree | 997b325187a6ebf119bdb18955b56ba2cf75dd8f | |
parent | 480b6c1e8be96c3769727390f23689857a365135 (diff) |
Work around a Python bug on Windows with UTF-8 configuration (#820)
-rw-r--r-- | youtube_dl/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index dfcaccafa..b8a82f932 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -30,6 +30,7 @@ __authors__ = ( __license__ = 'Public Domain' +import codecs import getpass import optparse import os @@ -335,6 +336,11 @@ def parseOpts(overrideArguments=None): 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 |