diff options
| author | remitamine <remitamine@gmail.com> | 2016-03-13 14:37:45 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2016-03-13 14:37:45 +0100 | 
| commit | 91ee320bfaa279571b27bf44730c8677ff2b3980 (patch) | |
| tree | 8df98efa3ca00f9dd91f6b63197a61a4edd8399a /youtube_dl/downloader/external.py | |
| parent | 634415ca1791b22ddb8a272266084d8b22199d09 (diff) | |
[downloader/external] wrap available_opt in a list
Diffstat (limited to 'youtube_dl/downloader/external.py')
| -rw-r--r-- | youtube_dl/downloader/external.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index 4e299b4ee..daedf66de 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -53,7 +53,7 @@ class ExternalFD(FileDownloader):      @classmethod      def available(cls): -        return check_executable(cls.get_basename(), cls.available_opt) +        return check_executable(cls.get_basename(), [cls.AVAILABLE_OPT])      @classmethod      def supports(cls, info_dict): @@ -86,7 +86,7 @@ class ExternalFD(FileDownloader):  class CurlFD(ExternalFD): -    available_opt = ['-V'] +    AVAILABLE_OPT = '-V'      def _make_cmd(self, tmpfilename, info_dict):          cmd = [self.exe, '--location', '-o', tmpfilename] @@ -101,7 +101,7 @@ class CurlFD(ExternalFD):  class AxelFD(ExternalFD): -    available_opt = ['-V'] +    AVAILABLE_OPT = '-V'      def _make_cmd(self, tmpfilename, info_dict):          cmd = [self.exe, '-o', tmpfilename] @@ -113,7 +113,7 @@ class AxelFD(ExternalFD):  class WgetFD(ExternalFD): -    available_opt = ['--version'] +    AVAILABLE_OPT = '--version'      def _make_cmd(self, tmpfilename, info_dict):          cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies'] @@ -128,7 +128,7 @@ class WgetFD(ExternalFD):  class Aria2cFD(ExternalFD): -    available_opt = ['-v'] +    AVAILABLE_OPT = '-v'      def _make_cmd(self, tmpfilename, info_dict):          cmd = [self.exe, '-c'] | 
