URI: 
       tfix create bug - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 5e677b0e972faacbb913be38b2e40ad19527ea03
   DIR parent 3b11b1d0ffaa9b711742f284001e2192d1c2f12b
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Tue,  6 Dec 2011 10:39:18 +0100
       
       fix create bug
       
       Diffstat:
         M client/electrum.py                  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/client/electrum.py b/client/electrum.py
       t@@ -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)