logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 0861812d7208310a03909502b1610f5e89d04401
parent b87018122995acb7e6a1be3f2464605259b93611
Author: dirkf <fieldhouse@gmx.net>
Date:   Tue, 25 Jul 2023 15:11:15 +0100

[build] Fix typo in `devscripts/fish-completion.py` (fix 2285605)

Diffstat:

Mdevscripts/fish-completion.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devscripts/fish-completion.py b/devscripts/fish-completion.py @@ -43,7 +43,7 @@ def build_completion(opt_parser): template = read_file(FISH_COMPLETION_TEMPLATE) filled_template = template.replace('{{commands}}', '\n'.join(commands)) - write_file(filled_template) + write_file(FISH_COMPLETION_FILE, filled_template) parser = youtube_dl.parseOpts()[0]