Error with KiCad 8
Closed this issue · 2 comments
boromyr commented
Errore KiCad
[Content]
Traceback (most recent call last):
File "D:\Users/PC/Documents/KiCad/8.0/scripting\plugins\com_github_gregdavill_KiBuzzard\plugin.py",
line 93, in run_buzzard
io = pcbnew.PCB_PLUGIN()
^^^^^^^^^^^^^^^^^
AttributeError: module 'pcbnew' has no attribute 'PCB_PLUGIN'
When I try to modify an existing label, I get this error. I tried to search for PCB_PLUGIN
in pcbnew.py of version 8 of KiCad and I believe it has been replaced with PCB_IO
.
Windows 11
KiCad 8 RC2
KiBuzzard 207b970
arturo182 commented
boromyr commented
Solved, just replace io = pcbnew.PCB_PLUGIN()
with io = pcbnew.PCB_IO_KICAD_SEXPR()