Skip to content

Commit

Permalink
[httpie] Fix available method
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan committed Jan 13, 2022
1 parent 11c8617 commit d57576b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/downloader/external.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class HttpieFD(ExternalFD):

@classmethod
def available(cls, path=None):
return ExternalFD.available(cls, path or 'http')
return super().available(path or 'http')

def _make_cmd(self, tmpfilename, info_dict):
cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
Expand Down

0 comments on commit d57576b

Please sign in to comment.