From 57518f5dcbc263494951219cc7158b1770244670 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Jul 2026 16:21:45 +0000 Subject: [PATCH] fix: correct Python indentation in immich heredoc patch (ct/immich.sh) --- ct/immich.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/immich.sh b/ct/immich.sh index 1aa7e0546..fd3d60a94 100644 --- a/ct/immich.sh +++ b/ct/immich.sh @@ -340,10 +340,10 @@ old = "(0, sharp_1.default)(input).metadata()" new = "(0, sharp_1.default)(input, { unlimited: true, limitInputPixels: false }).metadata()" if new in s: print('hotfix already there') - elif old in s: +elif old in s: p.write_text(s.replace(old, new, 1)) print('hotfix applied') - else: +else: print('pattern not found, skipped') PY fi