From 5e677b0e972faacbb913be38b2e40ad19527ea03 Mon Sep 17 00:00:00 2001 From: thomasv Date: Tue, 6 Dec 2011 10:39:18 +0100 Subject: [PATCH] fix create bug --- client/electrum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/electrum.py b/client/electrum.py index dcba93975..8735d870c 100755 --- a/client/electrum.py +++ b/client/electrum.py @@ -669,7 +669,7 @@ if __name__ == '__main__': wallet.save() sys.exit(0) - if not wallet.read() and cmd != 'help': + if not wallet.read() and cmd not in ['help','create']: print "Wallet file not found." print "Type 'electrum.py create' to create a new wallet, or provide a path to a wallet with the -d option" sys.exit(0)