Commit 12d477f1 authored by Nicolas Dumazet's avatar Nicolas Dumazet

allow naming Property Holders


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42806 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3f990fa3
......@@ -319,8 +319,8 @@ class PropertyHolder(object):
'__ac_permissions__',
'_erp5_properties'))
def __init__(self):
self.__name__ = 'PropertyHolder'
def __init__(self, name='PropertyHolder'):
self.__name__ = name
self.security = ClassSecurityInfo() # We create a new security info object
self.workflow_method_registry = {}
......
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