summaryrefslogtreecommitdiffstats
path: root/module/download_thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/download_thread.py')
-rw-r--r--module/download_thread.py3
1 files changed, 1 insertions, 2 deletions
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
-