Browse Source

Only save config if value changed

2.9.x
Johann Bauer 8 years ago
parent
commit
47e062aa7e
  1. 2
      lib/simple_config.py

2
lib/simple_config.py

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

Loading…
Cancel
Save