fix for when there isn't a save timer yet

This commit is contained in:
Damien Churchill 2009-08-03 19:04:54 +00:00
parent 704435f721
commit e496fda499

View file

@ -434,7 +434,7 @@ what is currently in the config and it could not convert the value
else:
return True
finally:
if self._save_timer.active():
if self._save_timer and self._save_timer.active():
self._save_timer.cancel()
def run_converter(self, input_range, output_version, func):