mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-06 12:37:09 +01:00
[downloader/external] Fix externals downloaders specified with extension on Windows
This commit is contained in:
parent
04c27802c0
commit
6c4d20cd6f
@ -131,5 +131,6 @@ def list_external_downloaders():
|
|||||||
def get_external_downloader(external_downloader):
|
def get_external_downloader(external_downloader):
|
||||||
""" Given the name of the executable, see whether we support the given
|
""" Given the name of the executable, see whether we support the given
|
||||||
downloader . """
|
downloader . """
|
||||||
bn = os.path.basename(external_downloader)
|
# Drop .exe extension on Windows
|
||||||
|
bn = os.path.splitext(os.path.basename(external_downloader))[0]
|
||||||
return _BY_NAME[bn]
|
return _BY_NAME[bn]
|
||||||
|
Loading…
Reference in New Issue
Block a user