From 2c59e2b8c5f9b4fe3bb330d1986761584a3777ca Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Tue, 18 Jul 2006 22:52:49 -0800 Subject: [PATCH] pass kwargs through Container... This probably means I don't need to del the kwargs stuff anymore... [git-p4: depot-paths = "//depot/": change = 870] --- DIDLLite.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DIDLLite.py b/DIDLLite.py index 6907f34..865cf59 100644 --- a/DIDLLite.py +++ b/DIDLLite.py @@ -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):