diff options
| author | dirkf <fieldhouse@gmx.net> | 2023-07-25 15:11:15 +0100 | 
|---|---|---|
| committer | dirkf <fieldhouse@gmx.net> | 2023-07-25 15:11:15 +0100 | 
| commit | 0861812d7208310a03909502b1610f5e89d04401 (patch) | |
| tree | a3c2a4e2f65d78cd6bc1bb8b03995bd4c1d5ca77 | |
| parent | b87018122995acb7e6a1be3f2464605259b93611 (diff) | |
[build] Fix typo in `devscripts/fish-completion.py` (fix 2285605)
| -rwxr-xr-x | devscripts/fish-completion.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/devscripts/fish-completion.py b/devscripts/fish-completion.py index 267ba6a58..ef8a39e0b 100755 --- 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] | 
