Not all wallets have plugins

This commit is contained in:
Neil Booth 2016-01-02 20:47:04 +09:00
parent 21bf5a8a84
commit ff39333d32
1 changed files with 3 additions and 2 deletions

View File

@ -180,9 +180,10 @@ class WizardBase(PrintError):
self.print_error("action %s on %s" % (action, wallet.basename()))
# Run the action on the wallet plugin, if any, then the
# wallet and finally ourselves
calls = [(wallet.plugin, (wallet, self)),
(wallet, (wallet, )),
calls = [(wallet, (wallet, )),
(self, (wallet, ))]
if hasattr(wallet, 'plugin'):
calls.insert(0, (wallet.plugin, (wallet, self)))
calls = [(getattr(actor, action), args) for (actor, args) in calls
if hasattr(actor, action)]
if not calls: