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():