odoo / runbot

118 stars 135 forks source link

[FIX] runbot: properly join log args #973

Closed d-fence closed 2 weeks ago

d-fence commented 2 weeks ago

When a type error occurs when trying to format a message in a build log, the suspicious are are joined with the message. But as the args may be a tuple, an errors occurs when concatenating the message with the args during the join.

With this commit, we ensure that the args are casted into a list.