URI: 
       tfix command names: setconfig, setconfig - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 454f67e89d7b465a5107b596c00faf35032add35
   DIR parent 19d104f023890a0cdfc5be947a6b9beb47d25b2e
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Fri,  1 Mar 2013 13:40:04 +0100
       
       fix command names: setconfig, setconfig
       
       Diffstat:
         M electrum                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/electrum b/electrum
       t@@ -461,11 +461,11 @@ if __name__ == '__main__':
                print_msg(eval(args[1]))
                wallet.save()
        
       -    elif cmd == 'get':
       +    elif cmd == 'getconfig':
                key = args[1]
                print_msg(wallet.config.get(key))
        
       -    elif cmd == 'set':
       +    elif cmd == 'setconfig':
                key, value = args[1:3]
                if key not in ['seed', 'seed_version', 'master_public_key', 'use_encryption']:
                    wallet.config.set_key(key, value, True)