mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 15:35:46 +07:00
[FIX] runbot_merge: handle gh comments ending with newlines
Regex `$` apparently does not quite strip that out.
This commit is contained in:
parent
c67325fdab
commit
e320de0439
@ -632,7 +632,7 @@ class PullRequests(models.Model):
|
||||
cmds: List[commands.Command] = [
|
||||
ps
|
||||
for line in commandlines
|
||||
for ps in commands.Parser(line)
|
||||
for ps in commands.Parser(line.rstrip())
|
||||
]
|
||||
except Exception as e:
|
||||
_logger.info(
|
||||
|
Loading…
Reference in New Issue
Block a user