From 411d26e3ff2ed14d17e5cea478805d8feb61f5dc Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Mon, 30 Jun 2008 22:48:22 +0200 Subject: Have Command.__init__ call object.__init__ --- src/nbblib/commands.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/nbblib/commands.py b/src/nbblib/commands.py index 0b0df31..3b69334 100644 --- a/src/nbblib/commands.py +++ b/src/nbblib/commands.py @@ -76,6 +76,7 @@ class Command(object): usage = '' def __init__(self, *args, **kwargs): + super(Command, self).__init__() self.validate_args(*args, **kwargs) self.args = args self.kwargs = kwargs -- cgit