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))
|
||||
|
Reference in New Issue
Block a user