Escape description

This commit is contained in:
Jon Michael Aanes 2025-04-15 00:08:48 +02:00
parent 6585a6ed30
commit 92a0fc2715

View File

@ -220,6 +220,8 @@ def push_changes(
for message in commit_messages.split('\n'):
description += f'- {message}\n'
description = description.replace('"', '')
cmd = [
'git',
'push',
@ -230,7 +232,7 @@ def push_changes(
'-o',
f'title={issue_title}',
'-o',
f'description={description}',
f'description="{description}"',
]
run_cmd(cmd, cwd)
return True