mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	[downloader/external] wrap available_opt in a list
This commit is contained in:
		| @@ -53,7 +53,7 @@ class ExternalFD(FileDownloader): | |||||||
|  |  | ||||||
|     @classmethod |     @classmethod | ||||||
|     def available(cls): |     def available(cls): | ||||||
|         return check_executable(cls.get_basename(), cls.available_opt) |         return check_executable(cls.get_basename(), [cls.AVAILABLE_OPT]) | ||||||
|  |  | ||||||
|     @classmethod |     @classmethod | ||||||
|     def supports(cls, info_dict): |     def supports(cls, info_dict): | ||||||
| @@ -86,7 +86,7 @@ class ExternalFD(FileDownloader): | |||||||
|  |  | ||||||
|  |  | ||||||
| class CurlFD(ExternalFD): | class CurlFD(ExternalFD): | ||||||
|     available_opt = ['-V'] |     AVAILABLE_OPT = '-V' | ||||||
|  |  | ||||||
|     def _make_cmd(self, tmpfilename, info_dict): |     def _make_cmd(self, tmpfilename, info_dict): | ||||||
|         cmd = [self.exe, '--location', '-o', tmpfilename] |         cmd = [self.exe, '--location', '-o', tmpfilename] | ||||||
| @@ -101,7 +101,7 @@ class CurlFD(ExternalFD): | |||||||
|  |  | ||||||
|  |  | ||||||
| class AxelFD(ExternalFD): | class AxelFD(ExternalFD): | ||||||
|     available_opt = ['-V'] |     AVAILABLE_OPT = '-V' | ||||||
|  |  | ||||||
|     def _make_cmd(self, tmpfilename, info_dict): |     def _make_cmd(self, tmpfilename, info_dict): | ||||||
|         cmd = [self.exe, '-o', tmpfilename] |         cmd = [self.exe, '-o', tmpfilename] | ||||||
| @@ -113,7 +113,7 @@ class AxelFD(ExternalFD): | |||||||
|  |  | ||||||
|  |  | ||||||
| class WgetFD(ExternalFD): | class WgetFD(ExternalFD): | ||||||
|     available_opt = ['--version'] |     AVAILABLE_OPT = '--version' | ||||||
|  |  | ||||||
|     def _make_cmd(self, tmpfilename, info_dict): |     def _make_cmd(self, tmpfilename, info_dict): | ||||||
|         cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies'] |         cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies'] | ||||||
| @@ -128,7 +128,7 @@ class WgetFD(ExternalFD): | |||||||
|  |  | ||||||
|  |  | ||||||
| class Aria2cFD(ExternalFD): | class Aria2cFD(ExternalFD): | ||||||
|     available_opt = ['-v'] |     AVAILABLE_OPT = '-v' | ||||||
|  |  | ||||||
|     def _make_cmd(self, tmpfilename, info_dict): |     def _make_cmd(self, tmpfilename, info_dict): | ||||||
|         cmd = [self.exe, '-c'] |         cmd = [self.exe, '-c'] | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 remitamine
					remitamine