diff options
author | spoob <spoob@gmx.de> | 2010-01-17 22:19:57 +0100 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2010-01-17 22:19:57 +0100 |
commit | b7ba3d89e802cc5e0ff3725bde72bf24f5f5c786 (patch) | |
tree | 8595f7efc5b19dad0b77da805cc3710a5890163c /module/thread_list.py | |
parent | some fixes, closed #62 ?? (diff) | |
download | pyload-b7ba3d89e802cc5e0ff3725bde72bf24f5f5c786.tar.xz |
Fixed Reconnect
Diffstat (limited to 'module/thread_list.py')
-rw-r--r-- | module/thread_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/thread_list.py b/module/thread_list.py index e4952587c..c8580fece 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -202,7 +202,7 @@ class Thread_List(object): self.parent.logger.info("Start reconnect") ip = re.match(".*Current IP Address: (.*)</body>.*", urllib2.urlopen("http://checkip.dyndns.org/").read()).group(1) #self.parent.hookManager.beforeReconnecting(ip) - reconn = subprocess.Popen(self.parent.config['activated']['method'])#, stdout=subprocess.PIPE) + reconn = subprocess.Popen(self.parent.config['reconnect']['method'])#, stdout=subprocess.PIPE) reconn.wait() time.sleep(1) ip = "" |