From 4869e25df3b25a92b12d955333483d8fbd2ff730 Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Fri, 6 Feb 2026 22:40:38 +0100 Subject: [PATCH] Update scripts/update_external_patches.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> --- scripts/update_external_patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update_external_patches.py b/scripts/update_external_patches.py index cf2c1c0ef..647713b74 100644 --- a/scripts/update_external_patches.py +++ b/scripts/update_external_patches.py @@ -77,7 +77,7 @@ def main(): with open(output_file, 'r') as f: content = f.read() if replace not in content: - die(f"Replace string '{replace}' not found in {replace}") + die(f"Replace string '{replace}' not found in {output_file}") with open(output_file, 'w') as f: f.write(content.replace(replace, value)) expected_files.add(output_file)