mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 00:27:07 -05:00 
			
		
		
		
	[options] Use compat_shlex_split
This commit is contained in:
		@@ -2,7 +2,6 @@ from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import os.path
 | 
			
		||||
import optparse
 | 
			
		||||
import shlex
 | 
			
		||||
import sys
 | 
			
		||||
 | 
			
		||||
from .downloader.external import list_external_downloaders
 | 
			
		||||
@@ -11,6 +10,7 @@ from .compat import (
 | 
			
		||||
    compat_get_terminal_size,
 | 
			
		||||
    compat_getenv,
 | 
			
		||||
    compat_kwargs,
 | 
			
		||||
    compat_shlex_split,
 | 
			
		||||
)
 | 
			
		||||
from .utils import (
 | 
			
		||||
    preferredencoding,
 | 
			
		||||
@@ -28,7 +28,7 @@ def parseOpts(overrideArguments=None):
 | 
			
		||||
        try:
 | 
			
		||||
            res = []
 | 
			
		||||
            for l in optionf:
 | 
			
		||||
                res += shlex.split(l, comments=True)
 | 
			
		||||
                res += compat_shlex_split(l, comments=True)
 | 
			
		||||
        finally:
 | 
			
		||||
            optionf.close()
 | 
			
		||||
        return res
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user