diff --git a/fusion_accounting_bank_rec/models/fusion_migration_wizard.py b/fusion_accounting_bank_rec/models/fusion_migration_wizard.py index 1e16c7d5..96debf7d 100644 --- a/fusion_accounting_bank_rec/models/fusion_migration_wizard.py +++ b/fusion_accounting_bank_rec/models/fusion_migration_wizard.py @@ -74,7 +74,9 @@ class FusionMigrationWizard(models.TransientModel): Phase 0) and then runs the bank-rec bootstrap. Returns a notification summarizing both. """ - _ = super().action_run_migration() + # Don't bind super()'s return value to `_` \u2014 that shadows the + # imported translation function and breaks the _("...") calls below. + super().action_run_migration() result = self._bank_rec_bootstrap_step() return { 'type': 'ir.actions.client',