From 09d515e97fd6cb2683da321725afeedfb0179357 Mon Sep 17 00:00:00 2001 From: Et0h Date: Fri, 23 Jan 2015 23:50:40 +0000 Subject: [PATCH] Don't reset automatic update choice --- syncplay/ui/ConfigurationGetter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/syncplay/ui/ConfigurationGetter.py b/syncplay/ui/ConfigurationGetter.py index feabd20..df3e1ab 100755 --- a/syncplay/ui/ConfigurationGetter.py +++ b/syncplay/ui/ConfigurationGetter.py @@ -118,8 +118,10 @@ class ConfigurationGetter(object): def _validateArguments(self): if self._config['resetConfig']: language = self._config['language'] + checkForUpdatesAutomatically = self._config['checkForUpdatesAutomatically'] self._config = self._defaultConfig self._config['language'] = language + self._config['checkForUpdatesAutomatically'] = checkForUpdatesAutomatically raise InvalidConfigValue("*"+getMessage("config-cleared-notification")) if not isValidLanguage(self._config['language']):