summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/addon/UnSkipOnFail.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/addon/UnSkipOnFail.py')
-rw-r--r--pyload/plugin/addon/UnSkipOnFail.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/pyload/plugin/addon/UnSkipOnFail.py b/pyload/plugin/addon/UnSkipOnFail.py
index 7d787d1ed..55de85082 100644
--- a/pyload/plugin/addon/UnSkipOnFail.py
+++ b/pyload/plugin/addon/UnSkipOnFail.py
@@ -11,11 +11,14 @@ class UnSkipOnFail(Addon):
__config__ = [("activated", "bool", "Activated", True)]
- __description__ = """Queue skipped duplicates when download fails"""
+ __description__ = """Restart skipped duplicates when download fails"""
__license__ = "GPLv3"
__authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
+ interval = 0 #@TODO: Remove in 0.4.10
+
+
def downloadFailed(self, pyfile):
#: Check if pyfile is still "failed",
# maybe might has been restarted in meantime
@@ -38,7 +41,7 @@ class UnSkipOnFail(Addon):
# the core.files-manager to save its data.
pylink = _pyfile(link)
- pylink.setCustomStatus("UnSkipOnFail", "queued")
+ pylink.setCustomStatus(_("unskipped"), "queued")
self.core.files.save()
pylink.release()