Module: deluge Branch: master Commit: 4caf81ef89a65191c0fefb896f768ac703880a73
Author: Andrew Resch <[email protected]> Date: Sun May 9 22:45:28 2010 -0700 Fix new release check pref --- deluge/core/preferencesmanager.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/core/preferencesmanager.py b/deluge/core/preferencesmanager.py index d54587c..26e3759 100644 --- a/deluge/core/preferencesmanager.py +++ b/deluge/core/preferencesmanager.py @@ -422,7 +422,7 @@ class PreferencesManager(component.Component): self.new_release_timer.stop() # Set a timer to check for a new release every 3 days self.new_release_timer = LoopingCall( - self._on_new_release_check, "new_release_check", True) + self._on_set_new_release_check, "new_release_check", True) self.new_release_timer.start(72 * 60 * 60, False) else: if self.new_release_timer: -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
