diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-08 15:31:56 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-08 15:31:56 +0100 |
commit | 976cb66b250837dc4e8d058f0d8eca71ad7efe14 (patch) | |
tree | fba0c0207582b01f75604260cc299c63f911aa70 /module/thread_list.py | |
parent | webif. icons, storage.to fix (diff) | |
download | pyload-976cb66b250837dc4e8d058f0d8eca71ad7efe14.tar.xz |
speed manager fix
Diffstat (limited to 'module/thread_list.py')
-rw-r--r-- | module/thread_list.py | 4 |
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 |