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, 2 insertions, 1 deletions
diff --git a/module/download_thread.py b/module/download_thread.py
index 27abe919d..36b308217 100644
--- a/module/download_thread.py
+++ b/module/download_thread.py
@@ -76,7 +76,8 @@ class Download_Thread(threading.Thread):
except Reconnect:
pass
except Exception, e:
- traceback.print_exc()
+ if self.parent.parent.config['general']['debug_mode']:
+ traceback.print_exc()
self.loadedPyFile.status.type = "failed"
self.loadedPyFile.status.error = str(e)
finally: