Skip to content

Commit

Permalink
Merge pull request #4317 from microcom/16.0_UO-FIX_HR
Browse files Browse the repository at this point in the history
[16.0][OU-FIX] hr: Error when calling the join() function
  • Loading branch information
pedrobaeza authored Feb 22, 2024
2 parents db8f5d4 + b40892a commit b68dd2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openupgrade_scripts/scripts/hr/16.0.1.1/post-migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def create_work_contact(env):
"Arbitrarily, the res.partner(%s) (the first one) "
"is used for work_contact_id of the hr.employee(%s).",
employee.id,
", ".joins(matching_partner.ids),
", ".join(str(v) for v in matching_partner.ids),
partner.id,
employee.id,
)
Expand Down

0 comments on commit b68dd2d

Please sign in to comment.