From a22cf973b4a43ef03ef08d8d6fa576fb35221a29 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 15 Aug 2017 12:55:53 +0200 Subject: [PATCH] Revert "Only save config if value changed" This reverts commit 47e062aa7e400d660f5b6043483f5694d26e0a01. --- lib/simple_config.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/simple_config.py b/lib/simple_config.py index c163288c..bfd43122 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -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()