mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[configuration] Undo code breakage
This commit is contained in:
		@@ -87,7 +87,9 @@ def parseOpts(overrideArguments=None):
 | 
				
			|||||||
        except IOError:
 | 
					        except IOError:
 | 
				
			||||||
            return default  # silently skip if file is not present
 | 
					            return default  # silently skip if file is not present
 | 
				
			||||||
        try:
 | 
					        try:
 | 
				
			||||||
            res = [shlex.split(l, comments=True) for l in optionf]
 | 
					            res = []
 | 
				
			||||||
 | 
					            for l in optionf:
 | 
				
			||||||
 | 
					                res += shlex.split(l, comments=True)
 | 
				
			||||||
        finally:
 | 
					        finally:
 | 
				
			||||||
            optionf.close()
 | 
					            optionf.close()
 | 
				
			||||||
        return res
 | 
					        return res
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user