fix typo: text gui with no wallet

This commit is contained in:
SomberNight 2017-11-05 22:33:19 +01:00
parent 42e2bb5ecc
commit 97d45c7c30
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class ElectrumGui:
self.config = config self.config = config
self.network = daemon.network self.network = daemon.network
storage = WalletStorage(config.get_wallet_path()) storage = WalletStorage(config.get_wallet_path())
if not storage.file_exists: if not storage.file_exists():
print("Wallet not found. try 'electrum create'") print("Wallet not found. try 'electrum create'")
exit() exit()
if storage.is_encrypted(): if storage.is_encrypted():