summaryrefslogtreecommitdiffstats
path: root/Core.py
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-05-20 13:34:27 +0200
committerGravatar spoob <spoob@gmx.de> 2009-05-20 13:34:27 +0200
commitce6820cff0109c87bcd0294d65242b12b2093311 (patch)
treeddb9f8bf42dc50913298d958a80bd206f70a11d3 /Core.py
parentNeue Request Klasse eingebunden + ein paar Status Funktionen (diff)
downloadpyload-ce6820cff0109c87bcd0294d65242b12b2093311.tar.xz
fixed some bugs
Diffstat (limited to 'Core.py')
-rw-r--r--Core.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Core.py b/Core.py
index 1a0e3e1ae..f2497e0ec 100644
--- a/Core.py
+++ b/Core.py
@@ -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)