Browse Source

Update res_users.py

pull/16/head
Mathias Markl 6 years ago
committed by GitHub
parent
commit
66c9322499
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      muk_security/models/res_users.py

2
muk_security/models/res_users.py

@ -52,7 +52,7 @@ class AccessUser(models.Model):
def browse(self, arg=None, *args, **kwargs): def browse(self, arg=None, *args, **kwargs):
if isinstance(arg, helper.NoSecurityUid): if isinstance(arg, helper.NoSecurityUid):
arg = super(helper.NoSecurityUid, arg).__int__() arg = super(helper.NoSecurityUid, arg).__int__()
return super(AccessUser, self).browse(arg=arg, *args **kwargs)
return super(AccessUser, self).browse(arg=arg, *args, **kwargs)
@classmethod @classmethod

Loading…
Cancel
Save