[FIX] runbot_merge: handle gh comments ending with newlines

Regex `$` apparently does not quite strip that out.
This commit is contained in:
Xavier Morel 2024-06-11 15:24:09 +02:00
parent c67325fdab
commit e320de0439

View File

@ -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(