URI: 
       tRevert "Only save config if value changed" - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit a22cf973b4a43ef03ef08d8d6fa576fb35221a29
   DIR parent 6cedb68023cbcedc07465ad77b74c92b43f6dfb0
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Tue, 15 Aug 2017 12:55:53 +0200
       
       Revert "Only save config if value changed"
       
       This reverts commit 47e062aa7e400d660f5b6043483f5694d26e0a01.
       
       Diffstat:
         M lib/simple_config.py                |       2 --
       
       1 file changed, 0 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/simple_config.py b/lib/simple_config.py
       t@@ -117,8 +117,6 @@ class SimpleConfig(PrintError):
                    return
        
                with self.lock:
       -            if key in self.user_config and self.user_config[key] == value:
       -                return
                    self.user_config[key] = value
                    if save:
                        self.save_user_config()