adding a message before loading the plugin with a try except
This commit is contained in:
@ -1,2 +1,6 @@
|
||||
from .action_menu_pcb2dxf import pcb2dxf
|
||||
pcb2dxf().register()
|
||||
import wx
|
||||
try:
|
||||
from .action_menu_pcb2dxf import pcb2dxf
|
||||
pcb2dxf().register()
|
||||
except Exception as e:
|
||||
wx.LogMessage('pcb to dxf plugin error\n'+str(e))
|
||||
|
@ -32,7 +32,7 @@ __author__ = "mozman <mozman@gmx.at>"
|
||||
|
||||
script_name="kicadpcb2dxf"
|
||||
__author_script__="easyw Maurice"
|
||||
___version___="3.8.2"
|
||||
___version___="3.8.3"
|
||||
|
||||
from contextlib import contextmanager
|
||||
|
||||
|
Reference in New Issue
Block a user