From 85ad5314fe0cbdb0bd145200c38160e9b8c5e1f2 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Thu, 9 Apr 2009 00:10:05 +0000 Subject: [PATCH] Make the autoadd update interval 5 seconds as intended --- deluge/core/autoadd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/autoadd.py b/deluge/core/autoadd.py index befabfbc6..accb06374 100644 --- a/deluge/core/autoadd.py +++ b/deluge/core/autoadd.py @@ -40,7 +40,7 @@ MAX_NUM_ATTEMPTS = 10 class AutoAdd(component.Component): def __init__(self): - component.Component.__init__(self, "AutoAdd", depend=["TorrentManager"], interval=5000) + component.Component.__init__(self, "AutoAdd", depend=["TorrentManager"], interval=5) # Get the core config self.config = ConfigManager("core.conf")