diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-13 15:26:18 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-13 15:26:18 +0200 |
commit | 368ce9fbcf8b6e13c5f448afe992ce6ff86443ed (patch) | |
tree | 23c7f3815157615294f14c4f0bde06b14106f628 /pyload/plugin/addon | |
parent | Revert 486adc1874e463b1563ad2394b216faff388b10d (diff) | |
parent | [UnSkipOnFail] Typo (diff) | |
download | pyload-368ce9fbcf8b6e13c5f448afe992ce6ff86443ed.tar.xz |
Merge branch 'stable' into 0.4.10
Conflicts:
pyload/plugin/addon/UnSkipOnFail.py
Diffstat (limited to 'pyload/plugin/addon')
-rw-r--r-- | pyload/plugin/addon/UnSkipOnFail.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugin/addon/UnSkipOnFail.py b/pyload/plugin/addon/UnSkipOnFail.py index b7496de0b..7fa9ef4e2 100644 --- a/pyload/plugin/addon/UnSkipOnFail.py +++ b/pyload/plugin/addon/UnSkipOnFail.py @@ -7,7 +7,7 @@ from pyload.plugin.Addon import Addon class UnSkipOnFail(Addon): __name = "UnSkipOnFail" __type = "addon" - __version = "0.05" + __version = "0.06" __config = [("activated", "bool", "Activated", True)] @@ -36,7 +36,7 @@ class UnSkipOnFail(Addon): # It creates a temporary PyFile object using # "link" data, changes its status, and tells # the core.files-manager to save its data. - pylink = _pyfile(link) + pylink = self._pyfile(link) pylink.setCustomStatus(_("unskipped"), "queued") |