Escape description
This commit is contained in:
parent
6585a6ed30
commit
92a0fc2715
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user