filter plugins that do not have a .py source

This commit is contained in:
thomasv 2013-03-15 13:16:41 +01:00
parent 45c0880195
commit 6662c1dc53
1 changed files with 1 additions and 0 deletions

View File

@ -350,6 +350,7 @@ class ElectrumWindow(QMainWindow):
if __builtin__.use_local_modules:
fp, pathname, description = imp.find_module('plugins')
plugin_names = [name for a, name, b in pkgutil.iter_modules([pathname])]
plugin_names = filter( lambda name: os.path.exists(os.path.join(pathname,name+'.py')), plugin_names)
imp.load_module('electrum_plugins', fp, pathname, description)
self.plugins = map(lambda name: imp.load_source('electrum_plugins.'+name, os.path.join(pathname,name+'.py')), plugin_names)
else: