We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c5713fc + 6677088 commit ba6ec53Copy full SHA for ba6ec53
openupgradelib/openupgrade.py
@@ -2473,9 +2473,11 @@ def convert_field_to_html(
2473
if translate:
2474
if version_info[0] < 16:
2475
do_raise("Translatable fields are only managed in version 16.0 or higher")
2476
- cr.execute("SELECT id, {field_name} FROM {table};").format(
2477
- field_name=field_name, table=table
2478
- ) # pylint: disable=E8103
+ cr.execute( # pylint: disable=E8103
+ "SELECT id, {field_name} FROM {table};".format(
+ field_name=field_name, table=table
2479
+ )
2480
2481
for row in cr.fetchall():
2482
record_id, translations = row
2483
for lang in translations:
0 commit comments