diff options
author | spoob <spoob@gmx.de> | 2009-11-30 15:18:04 +0100 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-11-30 15:18:04 +0100 |
commit | f7563727e1ccb8d764904806cb9e262ba555f824 (patch) | |
tree | 1eb7b2b8b5dff1a6dd3b2ffab8d8d8f6e1b5c7a3 /module/thread_list.py | |
parent | Test Change (diff) | |
download | pyload-f7563727e1ccb8d764904806cb9e262ba555f824.tar.xz |
Cleaned XMLRPC in Core
Diffstat (limited to 'module/thread_list.py')
-rw-r--r-- | module/thread_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/thread_list.py b/module/thread_list.py index aa50a654f..fc886e4b4 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -60,7 +60,7 @@ class Thread_List(object): def get_job(self): """return job if suitable, otherwise send thread idle""" - if not self.parent.is_time_download() or self.pause or self.reconnecting or self.list.queueEmpty(): #conditions when threads dont download + if not self.parent.server_methods.is_time_download() or self.pause or self.reconnecting or self.list.queueEmpty(): #conditions when threads dont download return None self.init_reconnect() |