Skip to content

Commit

Permalink
[MIG] auth_admin_passkey: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amkarthik committed Nov 21, 2023
1 parent 7118f80 commit 7d9ca96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auth_admin_passkey/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"name": "Authentification - System Administrator Passkey",
"summary": "Allows system administrator to authenticate with any account",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"category": "base",
"author": "GRAP,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/server-auth",
Expand Down
2 changes: 1 addition & 1 deletion auth_admin_passkey/models/res_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _prepare_email_passkey(self, login_user):

def _check_credentials(self, password, env):
try:
return super(ResUsers, self)._check_credentials(password, env)
return super()._check_credentials(password, env)

except exceptions.AccessDenied:
# Just be sure that parent methods aren't wrong
Expand Down

0 comments on commit 7d9ca96

Please sign in to comment.