Browse Source

pass kwargs through Container... This probably means I don't need

to del the kwargs stuff anymore...

[git-p4: depot-paths = "//depot/": change = 870]
v0.3
John-Mark Gurney 18 years ago
parent
commit
2c59e2b8c5
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      DIDLLite.py

+ 4
- 2
DIDLLite.py View File

@@ -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):


Loading…
Cancel
Save