From a280f5d5b264d32922a5d528e19caab784085227 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 30 Nov 2024 13:59:57 -0800 Subject: [PATCH] style: remove trailing whitespace in update-history.py --- scripts/update-history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-history.py b/scripts/update-history.py index 36579b64e..c7a0d6512 100755 --- a/scripts/update-history.py +++ b/scripts/update-history.py @@ -52,7 +52,7 @@ def main(): version_idx = history_content.find(version_header, start_idx) if version_idx == -1: raise ValueError(f"Could not find version header: {version_header}") - + # Find the next version header after this one next_version_idx = history_content.find("\n### Aider v", version_idx + len(version_header)) if next_version_idx == -1: