From fbb3491e977da28c48a2848e7e48918160475af7 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 22 Jun 2022 00:38:41 +0200 Subject: [PATCH] fix typo: stdio gui with no wallet same as https://github.com/spesmilo/electrum/pull/3223 - should have been included there --- electrum/gui/stdio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/stdio.py b/electrum/gui/stdio.py index ed5632efd..2cecab634 100644 --- a/electrum/gui/stdio.py +++ b/electrum/gui/stdio.py @@ -26,7 +26,7 @@ class ElectrumGui(BaseElectrumGui): BaseElectrumGui.__init__(self, config=config, daemon=daemon, plugins=plugins) 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():