Only save config if value changed

This commit is contained in:
Johann Bauer 2017-08-09 22:25:28 +02:00
parent 1e5462dccf
commit 47e062aa7e
1 changed files with 2 additions and 0 deletions

View File

@ -117,6 +117,8 @@ 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()