diff --git a/common/lib/capa/capa/inputtypes.py b/common/lib/capa/capa/inputtypes.py index 9569958c96..33e9048131 100644 --- a/common/lib/capa/capa/inputtypes.py +++ b/common/lib/capa/capa/inputtypes.py @@ -584,7 +584,7 @@ class VseprInput(InputTypeBase): tags = ['vsepr_input'] def __init__(self, system, xml, state): - super(ImageInput, self).__init__(system, xml, state) + super(VseprInput, self).__init__(system, xml, state) self.height = xml.get('height') self.width = xml.get('width') @@ -609,7 +609,7 @@ class VseprInput(InputTypeBase): } return context -register_input_class(VseprInput) +registry.register(VseprInput) #--------------------------------------------------------------------------------