summaryrefslogtreecommitdiffstats
path: root/module/plugins/Hoster.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/Hoster.py')
-rw-r--r--module/plugins/Hoster.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/module/plugins/Hoster.py b/module/plugins/Hoster.py
index 737bdcdb4..ad4f8f16b 100644
--- a/module/plugins/Hoster.py
+++ b/module/plugins/Hoster.py
@@ -100,7 +100,6 @@ class Hoster(Base):
self.lastCheck = None
#: js engine, see `JsEngine`
self.js = self.core.js
- self.cTask = None #captcha task
self.retries = 0 # amount of retries already made
self.html = None # some plugins store html code here
@@ -108,13 +107,12 @@ class Hoster(Base):
self.init()
def getMultiDL(self):
- self.logDebug("Deprecated attribute multiDL, use limitDL instead")
return self.limitDL <= 0
def setMultiDL(self, val):
- self.logDebug("Deprecated attribute multiDL, use limitDL instead")
self.limitDL = 0 if val else 1
+ #: virtual attribute using self.limitDL on behind
multiDL = property(getMultiDL, setMultiDL)
def getChunkCount(self):