kivy: fix missing parameter

This commit is contained in:
ThomasV 2017-03-02 11:18:15 +01:00
parent 9dde9971da
commit 5ea670b765
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ class ElectrumWindow(App):
def load_wallet_by_name(self, path):
if not path:
return
wallet = self.daemon.load_wallet(path)
wallet = self.daemon.load_wallet(path, None)
if wallet:
if wallet != self.wallet:
self.stop_wallet()