diff options
author | Rob Austein <sra@hactrn.net> | 2009-05-19 23:06:02 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-05-19 23:06:02 +0000 |
commit | d0c51c600ccea8db0c34275ac313c8e89912e643 (patch) | |
tree | dac8e15f872705d00aef3e8a26605ad4a3f717c6 /rpkid/rpki/up_down.py | |
parent | 028f796add089ff6013253c4e22a330e8ee4a477 (diff) |
Lint
svn path=/rpkid/rpki/https.py; revision=2441
Diffstat (limited to 'rpkid/rpki/up_down.py')
-rw-r--r-- | rpkid/rpki/up_down.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rpkid/rpki/up_down.py b/rpkid/rpki/up_down.py index 8b93f5a8..de36c5bc 100644 --- a/rpkid/rpki/up_down.py +++ b/rpkid/rpki/up_down.py @@ -87,6 +87,7 @@ class multi_uri(list): """ Initialize a set of URIs, which includes basic some syntax checking. """ + list.__init__(self) if isinstance(ini, (list, tuple)): self[:] = ini elif isinstance(ini, str): @@ -151,6 +152,7 @@ class class_elt(base_elt): def __init__(self): """Initialize class_elt.""" + base_elt.__init__(self) self.certs = [] def startElement(self, stack, name, attrs): @@ -267,6 +269,7 @@ class class_response_syntax(base_elt): def __init__(self): """Initialize class_response_syntax.""" + base_elt.__init__(self) self.classes = [] def startElement(self, stack, name, attrs): @@ -500,6 +503,7 @@ class error_response_pdu(base_elt): """ Initialize an error_response PDU from an exception object. """ + base_elt.__init__(self) if exception is not None: self.status = self.exceptions.get(type(exception), 2001) self.description = str(exception) |