Revert "Only save config if value changed"

This reverts commit 47e062aa7e.
This commit is contained in:
ThomasV 2017-08-15 12:55:53 +02:00
parent 6cedb68023
commit a22cf973b4
1 changed files with 0 additions and 2 deletions

View File

@ -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()