Msg is mandatory field for the request

This commit is contained in:
Nikolay Telepenin
2023-09-04 15:49:30 +01:00
parent 7584ec84ce
commit 53ce609266
2 changed files with 3 additions and 3 deletions

View File

@ -350,7 +350,7 @@ class GerritProvider(GitProvider):
msg.append(f'* {description}\n{full_path}')
if msg:
add_comment(self.parsed_url, self.refspec, "---\n".join(msg))
add_comment(self.parsed_url, self.refspec, "\n".join(msg))
return True
def publish_comment(self, pr_comment: str, is_temporary: bool = False):