diff options
author | spoob <spoob@gmx.de> | 2009-05-20 13:34:27 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-05-20 13:34:27 +0200 |
commit | ce6820cff0109c87bcd0294d65242b12b2093311 (patch) | |
tree | ddb9f8bf42dc50913298d958a80bd206f70a11d3 /Core.py | |
parent | Neue Request Klasse eingebunden + ein paar Status Funktionen (diff) | |
download | pyload-ce6820cff0109c87bcd0294d65242b12b2093311.tar.xz |
fixed some bugs
Diffstat (limited to 'Core.py')
-rw-r--r-- | Core.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -226,8 +226,8 @@ class Core(object): for pyfile in self.thread_list.py_load_files: if pyfile.status.type == 'downloading': - print "Speed" ,pyfile.status.getSpeed() - print "ETA" , pyfile.status.getETA() + print "Speed" ,pyfile.status.get_speed() + print "ETA" , pyfile.status.get_ETA() try: fn = pyfile.status.filename @@ -245,8 +245,8 @@ class Core(object): def start(self): """ starts the machine """ + self._get_links(self.link_file) while True: - self._get_links(self.link_file) self.thread_list.status() self._test_print_status() sleep(1) |