Author: andar
Revision: 5262
Log:
Remove 5 minute config save timer as it's not really needed and it's
preventing gtkui from starting
Diff:
Modified: trunk/deluge/configmanager.py
===================================================================
--- trunk/deluge/configmanager.py 2009-05-12 17:07:17 UTC (rev 5261)
+++ trunk/deluge/configmanager.py 2009-05-12 17:48:47 UTC (rev 5262)
@@ -24,8 +24,6 @@
import os
-from twisted.internet.task import LoopingCall
-
import deluge.common
from deluge.log import LOG as log
from deluge.config import Config
@@ -35,9 +33,6 @@
log.debug("ConfigManager started..")
self.config_files = {}
self.__config_directory = None
- # Set a 5 minute timer to call save()
- self.__timer = LoopingCall(self.save)
- self.__timer.start(300, False)
@property
def config_directory(self):
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---