forked from minhngoc25a/youtube-dl
[compat] Fix python version check for compat_shlex_split
This commit is contained in:
parent
12439dd5ec
commit
8df5ae15d1
|
@ -228,7 +228,7 @@ except ImportError: # Python < 3.3
|
||||||
return "'" + s.replace("'", "'\"'\"'") + "'"
|
return "'" + s.replace("'", "'\"'\"'") + "'"
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info > (2, 7, 2):
|
if sys.version_info >= (2, 7, 3):
|
||||||
compat_shlex_split = shlex.split
|
compat_shlex_split = shlex.split
|
||||||
else:
|
else:
|
||||||
# Working around shlex issue with unicode strings on some python 2
|
# Working around shlex issue with unicode strings on some python 2
|
||||||
|
|
Loading…
Reference in New Issue