Merge pull request #3223 from SomberNight/text_gui_no_wallet

fix typo: text gui with no wallet
This commit is contained in:
ThomasV 2017-11-06 03:57:41 +01:00 committed by GitHub
commit 9e8c26d29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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