diff --git a/kernel_patches_daemon/branch_worker.py b/kernel_patches_daemon/branch_worker.py index cbd60c3..6a4509e 100644 --- a/kernel_patches_daemon/branch_worker.py +++ b/kernel_patches_daemon/branch_worker.py @@ -1457,7 +1457,7 @@ async def submit_pr_summary( def ai_review_comment_preprocessor(self, body: str) -> str: # find the first line starting with > and remove everyting prior - match = re.search(r"^>.*$", body, re.MULTILINE) + match = re.search(r"^> diff --git.*$", body, re.MULTILINE) if match: body = body[match.start() :] # remove triple backticks