[FIX] runbot_merge: type error in conflict handling

This commit is contained in:
Xavier Morel 2024-06-10 14:29:55 +02:00
parent 4af515b20d
commit 14a2b0068d

View File

@ -1430,7 +1430,7 @@ class PullRequests(models.Model):
template = 'runbot_merge.forwardport.linked'
format_args = {
'pr': self,
'siblings': ', '.join(p.display_name for p in (self.batch_id - self)),
'siblings': ', '.join(p.display_name for p in (self.batch_id.prs - self)),
'footer': FOOTER,
}
elif not self._find_next_target():