diff options
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/Base.py | 2 | ||||
| -rw-r--r-- | module/plugins/Hoster.py | 4 | 
2 files changed, 2 insertions, 4 deletions
| diff --git a/module/plugins/Base.py b/module/plugins/Base.py index 4649a2b08..905744c9e 100644 --- a/module/plugins/Base.py +++ b/module/plugins/Base.py @@ -300,7 +300,7 @@ class Base(object):                      raise Abort()                  sleep(1) -            #TODO +            #TODO task handling              self.im.removeTask(task)              if task.error and has_plugin: #ignore default error message since the user could use OCR 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): | 
