commit: aefce8e6dca8a0ae784468a5e1a4ba01f1471380
parent 8b6ac49ecc873f787f647f1e623af989f85de644
Author: Sergey M․ <dstftw@gmail.com>
Date: Sat, 17 Jun 2017 23:48:58 +0700
[utils] Use compat_shlex_quote in shell_quote
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
@@ -22,7 +22,6 @@ import locale
import math
import operator
import os
-import pipes
import platform
import random
import re
@@ -1535,7 +1534,7 @@ def shell_quote(args):
if isinstance(a, bytes):
# We may get a filename encoded with 'encodeFilename'
a = a.decode(encoding)
- quoted_args.append(pipes.quote(a))
+ quoted_args.append(compat_shlex_quote(a))
return ' '.join(quoted_args)