]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🐛 Fix translation script path (#14685)
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 10 Jan 2026 23:06:37 +0000 (15:06 -0800)
committerGitHub <noreply@github.com>
Sat, 10 Jan 2026 23:06:37 +0000 (23:06 +0000)
scripts/translate.py

index ffecfde07b3dfab844d20e2c8835a5a0a5f6d8d4..c7e6c7ea19bfe2c496522f9754c914fbc206c756 100644 (file)
@@ -25,7 +25,7 @@ non_translated_sections = (
     "contributing.md",
 )
 
-general_prompt_path = Path(__file__).absolute().parent / "llm-general-prompt.md"
+general_prompt_path = Path(__file__).absolute().parent / "general-llm-prompt.md"
 general_prompt = general_prompt_path.read_text(encoding="utf-8")
 
 app = typer.Typer()