diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-22 16:38:05 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-22 16:38:05 +0200 |
commit | 872412242c1a6e7217649d9606e9207893513434 (patch) | |
tree | cb6516fb9874f175387aadd1e417259f9502c05a /Core.py | |
parent | remove queue from thread list and implemented own method to get suited (diff) | |
download | pyload-872412242c1a6e7217649d9606e9207893513434.tar.xz |
fixed little bugs
Diffstat (limited to 'Core.py')
-rw-r--r-- | Core.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -227,8 +227,8 @@ class Core(object): for pyfile in self.thread_list.py_downloading: if pyfile.status.type == 'downloading': - print "Speed" ,pyfile.status.get_speed() - print "ETA" , pyfile.status.get_ETA() + print pyfile.status.filename, "Speed" ,pyfile.status.get_speed() ,"kb/s" + print pyfile.status.filename, "ETA" , pyfile.status.get_ETA(), "s" #try: # fn = pyfile.status.filename @@ -241,7 +241,7 @@ class Core(object): # print pyfile.status.filename, "downloading" if pyfile.status.type == 'waiting': - print pyfile.status.filename + ": " + "wartet", pyfile.status.waituntil -time() + print pyfile.status.filename + ": " + "wartet", pyfile.status.waituntil -time() , "s" def start(self): """ starts the machine |