Browse Source

Remove a name-clashing unnecessary local variable

283
Neil Booth 9 years ago
parent
commit
ed3c0a5469
  1. 7
      lib/plugins.py

7
lib/plugins.py

@ -98,11 +98,7 @@ class Plugins(DaemonThread):
__import__(dep) __import__(dep)
except ImportError: except ImportError:
return False return False
wallet_types = d.get('requires_wallet_type') return w.wallet_type in d.get('requires_wallet_type', [])
if wallet_types:
if w.wallet_type not in wallet_types:
return False
return True
def wallet_plugin_loader(self, config, name): def wallet_plugin_loader(self, config, name):
if self.plugins.get(name) is None: if self.plugins.get(name) is None:
@ -202,4 +198,3 @@ class BasePlugin(PrintError):
def settings_dialog(self): def settings_dialog(self):
pass pass

Loading…
Cancel
Save