summaryrefslogtreecommitdiffstats
path: root/module/thread_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/thread_list.py')
-rw-r--r--module/thread_list.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/thread_list.py b/module/thread_list.py
index d8a05a41d..13dba309e 100644
--- a/module/thread_list.py
+++ b/module/thread_list.py
@@ -294,11 +294,13 @@ class Thread_List(object):
if speed[2].plugin.req.isSlow:
slowCount += 1
slowSpeed += speed[2].plugin.req.maxSpeed/1024
-
+ stat = {}
stat["slow_downloads"] = slowCount
stat["each_speed"] = eachSpeed
eachSpeed = (maxSpeed - slowSpeed) / (threadCount - slowCount)
stat["each_speed_optimized"] = eachSpeed
+ self.stat = stat
+
for speed in speeds:
if speed[2].plugin.req.isSlow:
continue