Replace newlines with br
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2025-04-15 00:18:32 +02:00
parent 92a0fc2715
commit 5f6ee7f3ad

View File

@ -161,7 +161,7 @@ def create_aider_command(issue: str) -> list[str]:
'--yes-always',
]
if False:
if True:
l.append('--cache-prompts')
if False:
@ -220,7 +220,7 @@ def push_changes(
for message in commit_messages.split('\n'):
description += f'- {message}\n'
description = description.replace('"', '')
description = description.replace('\n', '<br>')
cmd = [
'git',