summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/addon/DownloadScheduler.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/addon/DownloadScheduler.py')
-rw-r--r--pyload/plugins/addon/DownloadScheduler.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pyload/plugins/addon/DownloadScheduler.py b/pyload/plugins/addon/DownloadScheduler.py
index a35bba04e..ba7b14467 100644
--- a/pyload/plugins/addon/DownloadScheduler.py
+++ b/pyload/plugins/addon/DownloadScheduler.py
@@ -10,7 +10,7 @@ from pyload.plugins.internal.Addon import Addon
class DownloadScheduler(Addon):
__name__ = "DownloadScheduler"
__type__ = "addon"
- __version__ = "0.21"
+ __version__ = "0.22"
__config__ = [("timetable", "str" , "List time periods as hh:mm full or number(kB/s)" , "0:00 full, 7:00 250, 10:00 0, 17:00 150"),
("abort" , "bool", "Abort active downloads when start period with speed 0", False )]
@@ -21,6 +21,11 @@ class DownloadScheduler(Addon):
("stickell", "l.stickell@yahoo.it")]
+ #@TODO: Remove in 0.4.10
+ def initPeriodical(self):
+ pass
+
+
def setup(self):
self.cb = None #: callback to scheduler job; will be by removed AddonManager when addon unloaded