summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-12-19 15:25:50 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-12-19 15:25:50 +0100
commitc521e6445bc8e6b91440813b90d1fdedd76c9721 (patch)
tree44c6625099b21cace582fb25d3f52368fa503ff0 /module
parentfixed reconnect (diff)
downloadpyload-c521e6445bc8e6b91440813b90d1fdedd76c9721.tar.xz
real reconnect fix ;-)
Diffstat (limited to 'module')
-rw-r--r--module/thread_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/thread_list.py b/module/thread_list.py
index 52d06aae4..6a42898be 100644
--- a/module/thread_list.py
+++ b/module/thread_list.py
@@ -149,7 +149,7 @@ class Thread_List(object):
def init_reconnect(self):
"""initialise a reonnect"""
- if not self.parent.config['general']['use_reconnect'] or self.reconnecting or not self.parent.is_reconnect_time():
+ if not self.parent.config['general']['use_reconnect'] or self.reconnecting or not self.parent.server_methods.is_time_reconnect():
return False
if not exists(self.parent.config['general']['reconnect_method']):