mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
fix for when there isn't a save timer yet
This commit is contained in:
parent
704435f721
commit
e496fda499
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ what is currently in the config and it could not convert the value
|
||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
finally:
|
finally:
|
||||||
if self._save_timer.active():
|
if self._save_timer and self._save_timer.active():
|
||||||
self._save_timer.cancel()
|
self._save_timer.cancel()
|
||||||
|
|
||||||
def run_converter(self, input_range, output_version, func):
|
def run_converter(self, input_range, output_version, func):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue