Skip to content

Commit

Permalink
[FIX]convert_field_to_html: change param of cr.execute()
Browse files Browse the repository at this point in the history
  • Loading branch information
clementthomas committed Oct 3, 2024
1 parent 42e0080 commit 0206473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openupgradelib/openupgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -2484,7 +2484,7 @@ def convert_field_to_html(
if verbose:
logged_query(cr, query, (json.dumps(translations), record_id))
else:
cr.execute(query, translations, record_id)
cr.execute(query, (json.dumps(translations), record_id))
return

if version_info[0] < 7:
Expand Down

0 comments on commit 0206473

Please sign in to comment.