URI: 
       tIf wallet does not exist, then it does not even attempt to read the config (read returns on IOError exception). Ergo a new wallet will not ever set the theme name and it will stay as None. We change this to a sensible default so new wallets have a themed GUI. - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit ca4473c6201390a99a72d473c8f368b2b507d501
   DIR parent 4c1bc141044edfb95b9f06503b43019d5b502d95
  HTML Author: Amir Taaki <genjix@riseup.net>
       Date:   Wed, 29 Aug 2012 21:27:22 +0100
       
       If wallet does not exist, then it does not even attempt to read the config (read returns on IOError exception). Ergo a new wallet will not ever set the theme name and it will stay as None. We change this to a sensible default so new wallets have a themed GUI.
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -290,7 +290,7 @@ class Wallet:
                self.num_zeros = 0
                self.master_public_key = ''
                self.conversion_currency = None
       -        self.theme = None
       +        self.theme = "Cleanlook"
        
                # saved fields
                self.use_encryption = False