Fix forgotten change in kicadplugins.i, after changing he class name PYTHON_FOOTPRINT_WIZARDS to PYTHON_FOOTPRINT_WIZARD_LIST

This bug prevent loading Python wizards.
This commit is contained in:
jean-pierre charras 2018-02-04 18:27:32 +01:00
parent c7bc154045
commit b11b9b9d0d
1 changed files with 2 additions and 2 deletions

View File

@ -260,7 +260,7 @@ class KiCadPlugin:
pass # register to file plugins in C++
if isinstance(self,FootprintWizardPlugin):
PYTHON_FOOTPRINT_WIZARDS.register_wizard(self)
PYTHON_FOOTPRINT_WIZARD_LIST.register_wizard(self)
return
if isinstance(self,ActionPlugin):
@ -274,7 +274,7 @@ class KiCadPlugin:
pass # deregister to file plugins in C++
if isinstance(self,FootprintWizardPlugin):
PYTHON_FOOTPRINT_WIZARDS.deregister_wizard(self)
PYTHON_FOOTPRINT_WIZARD_LIST.deregister_wizard(self)
return
if isinstance(self,ActionPlugin):