diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-12 15:36:48 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-12 15:36:48 +0200 |
commit | 979daf6a4daae605b2a39e916c16015437fac98d (patch) | |
tree | 7f40809a692548717c778ec723fd1fced09cf539 /Core.py | |
parent | utf-8 encodung, correcting file header (diff) | |
download | pyload-979daf6a4daae605b2a39e916c16015437fac98d.tar.xz |
little fixes
Diffstat (limited to 'Core.py')
-rw-r--r-- | Core.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -179,9 +179,13 @@ class Core(object): list = [] for pyfile in self.thread_list.py_downloading: download = {} + download['id'] = pyfile.id download['name'] = pyfile.status.filename download['speed'] = pyfile.status.get_speed() download['eta'] = pyfile.status.get_ETA() + download['kbleft'] = pyfile.status.kB_left() + download['size'] = pyfile.status.size() + download['status'] = pyfile.status.type list.append(download) return list |