diff options
Diffstat (limited to 'youtube_dl/utils.py')
| -rw-r--r-- | youtube_dl/utils.py | 11 | 
1 files changed, 10 insertions, 1 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index b50c8166f..0720fe9eb 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -951,7 +951,16 @@ class locked_file(object):  def shell_quote(args): -    return ' '.join(map(pipes.quote, args)) +    quoted_args = [] +    encoding = sys.getfilesystemencoding() +    if encoding is None: +        encoding = 'utf-8' +    for a in args: +        if isinstance(a, bytes): +            # We may get a filename encoded with 'encodeFilename' +            a = a.decode(encoding) +        quoted_args.append(pipes.quote(a)) +    return u' '.join(quoted_args)  def takewhile_inclusive(pred, seq): | 
