summaryrefslogtreecommitdiffstats
path: root/Core.py
diff options
context:
space:
mode:
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)