Remove 5 minute config save timer as it's not really needed and it's

preventing gtkui from starting
This commit is contained in:
Andrew Resch 2009-05-12 17:48:47 +00:00
parent 65583cfe12
commit 90e05827dd
1 changed files with 0 additions and 5 deletions

View File

@ -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 @@ class _ConfigManager:
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):