From 97d45c7c300c3e0e753530266d831028c9347f03 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sun, 5 Nov 2017 22:33:19 +0100 Subject: [PATCH] fix typo: text gui with no wallet --- gui/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/text.py b/gui/text.py index 391e445d..2e613066 100644 --- a/gui/text.py +++ b/gui/text.py @@ -25,7 +25,7 @@ class ElectrumGui: self.config = config self.network = daemon.network storage = WalletStorage(config.get_wallet_path()) - if not storage.file_exists: + if not storage.file_exists(): print("Wallet not found. try 'electrum create'") exit() if storage.is_encrypted():