From 48588a0d05492e46126776c3e7023397b9ad0b90 Mon Sep 17 00:00:00 2001 From: spoob Date: Sun, 27 Dec 2009 02:40:56 +0100 Subject: Fixed reconnect loop (easy doing) --- module/download_thread.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'module/download_thread.py') diff --git a/module/download_thread.py b/module/download_thread.py index be6ff6bf0..3d4aa065d 100644 --- a/module/download_thread.py +++ b/module/download_thread.py @@ -77,7 +77,7 @@ class Download_Thread(threading.Thread): self.start() def run(self): - while (not self.shutdown): + while not self.shutdown: self.loadedPyFile = self.parent.get_job() if self.loadedPyFile: try: @@ -165,4 +165,3 @@ class Download_Thread(threading.Thread): sleep(1) pyfile.status.want_reconnect = False return True - -- cgit v1.2.3