mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +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:
|
||||
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):
|
||||
|
|
Loading…
Add table
Reference in a new issue