Fixes #2347
This commit is contained in:
parent
b1cbbc62c8
commit
791bcf19b1
1 changed files with 5 additions and 1 deletions
|
@ -2,9 +2,12 @@ import imp
|
|||
import os
|
||||
import sys
|
||||
import tabs
|
||||
import logging
|
||||
from config import config
|
||||
from gettext import gettext as _
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
plugins_dir = config.get('plugins_dir', '')
|
||||
plugins_dir = plugins_dir or\
|
||||
os.path.join(os.environ.get('XDG_DATA_HOME') or\
|
||||
|
@ -56,7 +59,8 @@ class PluginManager(object):
|
|||
imp.release_lock()
|
||||
except Exception as e:
|
||||
import traceback
|
||||
self.core.information(_("Could not load plugin: ") + traceback.format_exc(), 'Error')
|
||||
log.debug("Could not load plugin: \n%s", traceback.format_exc())
|
||||
self.core.information("Could not load plugin: %s" % e, 'Error')
|
||||
return
|
||||
finally:
|
||||
if imp.lock_held():
|
||||
|
|
Loading…
Reference in a new issue