Commit afaa84c1 authored by Sebastien Robin's avatar Sebastien Robin

check if there is already permission on manage_setLocaLPermissions


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1167 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a454122e
......@@ -1295,7 +1295,8 @@ class Base( CopyContainer, PortalContent, Base18, ActiveObject, ERP5PropertyMana
"""
permission_name = pname(permission)
if local_permission_list is None:
delattr(self,permission_name)
if hasattr(self,permission_name):
delattr(self,permission_name)
else:
if type(local_permission_list) is type('a'):
local_permission_list = (local_permission_list,)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment