소스 검색

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

dirkf 2 년 전
부모
커밋
0861812d72
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      devscripts/fish-completion.py

+ 1 - 1
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]