|
|
@@ -244,8 +244,10 @@ class Container(Object, list): |
|
|
|
updateID = 0 |
|
|
|
needupdate = False |
|
|
|
|
|
|
|
def __init__(self, cd, id, parentID, title, restricted = 0, creator = None): |
|
|
|
Object.__init__(self, cd, id, parentID, title, restricted, creator) |
|
|
|
def __init__(self, cd, id, parentID, title, restricted = 0, |
|
|
|
creator = None, **kwargs): |
|
|
|
Object.__init__(self, cd, id, parentID, title, restricted, |
|
|
|
creator, **kwargs) |
|
|
|
list.__init__(self) |
|
|
|
|
|
|
|
def doUpdate(self): |
|
|
|