summaryrefslogtreecommitdiffstats
path: root/pyload/remote/apitypes.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-26 16:40:38 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-26 16:40:50 +0200
commit967d6dd16c25ceba22dcd105079f72534ddb87e9 (patch)
tree4c971ff446dc955f1884e5aa80ef4cb62bbf55fe /pyload/remote/apitypes.py
parentnew DLC plugins (diff)
downloadpyload-967d6dd16c25ceba22dcd105079f72534ddb87e9.tar.xz
rewritten decrypter and info fetching thread
Diffstat (limited to 'pyload/remote/apitypes.py')
-rw-r--r--pyload/remote/apitypes.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/pyload/remote/apitypes.py b/pyload/remote/apitypes.py
index d186717d4..53d2de6d2 100644
--- a/pyload/remote/apitypes.py
+++ b/pyload/remote/apitypes.py
@@ -241,14 +241,15 @@ class InvalidConfigSection(ExceptionObject):
self.section = section
class LinkStatus(BaseObject):
- __slots__ = ['url', 'name', 'plugin', 'size', 'status']
+ __slots__ = ['url', 'name', 'size', 'status', 'plugin', 'hash']
- def __init__(self, url=None, name=None, plugin=None, size=None, status=None):
+ def __init__(self, url=None, name=None, size=None, status=None, plugin=None, hash=None):
self.url = url
self.name = name
- self.plugin = plugin
self.size = size
self.status = status
+ self.plugin = plugin
+ self.hash = hash
class OnlineCheck(BaseObject):
__slots__ = ['rid', 'data']