From: Sebastián Ramírez Date: Sat, 10 Jan 2026 23:06:37 +0000 (-0800) Subject: 🐛 Fix translation script path (#14685) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cefd50702a5269351fadbf8110628356bd505449;p=thirdparty%2Ffastapi%2Ffastapi.git 🐛 Fix translation script path (#14685) --- diff --git a/scripts/translate.py b/scripts/translate.py index ffecfde07b..c7e6c7ea19 100644 --- a/scripts/translate.py +++ b/scripts/translate.py @@ -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()