adding a message before loading the plugin with a try except
This commit is contained in:
@ -1,2 +1,6 @@
|
||||
from .fabrication_positions import generatePOS
|
||||
generatePOS().register()
|
||||
import wx
|
||||
try:
|
||||
from .fabrication_positions import generatePOS
|
||||
generatePOS().register()
|
||||
except Exception as e:
|
||||
wx.LogMessage('fabrication positions plugin error\n'+str(e))
|
||||
|
Reference in New Issue
Block a user