enhance error message
svn: r18560
This commit is contained in:
parent
b620bf6115
commit
82eaf45b20
@ -251,12 +251,15 @@ class BasePluginManager(object):
|
|||||||
module = __import__(pdata.mod_name)
|
module = __import__(pdata.mod_name)
|
||||||
sys.path.pop(0)
|
sys.path.pop(0)
|
||||||
else:
|
else:
|
||||||
print "WARNING: module cannot be loaded"
|
print _("WARNING: module cannot be loaded")
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
module = __import__(pdata.mod_name)
|
module = __import__(pdata.mod_name)
|
||||||
except:
|
except:
|
||||||
print "WARNING: module '%s' cannot be loaded" % pdata.mod_name
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
print _("WARNING: module '%s' cannot be loaded; "
|
||||||
|
"continuing...") % pdata.mod_name
|
||||||
return module
|
return module
|
||||||
|
|
||||||
def empty_managed_plugins(self):
|
def empty_managed_plugins(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user