From 9cf3055b0c9e74368af7d7dc535123c5e46820c1 Mon Sep 17 00:00:00 2001 From: Raphael Reverdy Date: Fri, 28 Aug 2026 18:36:37 +0200 Subject: [PATCH] auth_partner: fix missing id in change password wqwizard --- auth_partner/wizards/wizard_auth_partner_force_set_password.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth_partner/wizards/wizard_auth_partner_force_set_password.py b/auth_partner/wizards/wizard_auth_partner_force_set_password.py index 3e0c8b18c..f41268835 100644 --- a/auth_partner/wizards/wizard_auth_partner_force_set_password.py +++ b/auth_partner/wizards/wizard_auth_partner_force_set_password.py @@ -24,7 +24,7 @@ def _check_password(self): def action_force_set_password(self): self.ensure_one() - auth_partner_id = self.env.context.get("id") + auth_partner_id = self.env.context.get("active_id") if not auth_partner_id: raise UserError(self.env._("No id in context"))