diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-16 01:36:04 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-16 01:36:04 +0100 |
commit | e2d8d605aeb4fd3477a8d681e16cd0b17500a648 (patch) | |
tree | d420aa32404d980f47951db910fe42ba6c17cd3a /module/plugins/hooks/WindowsPhoneToastNotify.py | |
parent | [SkipRev] Fix https://github.com/pyload/pyload/issues/1048 (diff) | |
download | pyload-e2d8d605aeb4fd3477a8d681e16cd0b17500a648.tar.xz |
Fix allDownloadsFinished and allDownloadsProcessed defs
Diffstat (limited to 'module/plugins/hooks/WindowsPhoneToastNotify.py')
-rw-r--r-- | module/plugins/hooks/WindowsPhoneToastNotify.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/WindowsPhoneToastNotify.py b/module/plugins/hooks/WindowsPhoneToastNotify.py index 886d4ca6a..20686ee36 100644 --- a/module/plugins/hooks/WindowsPhoneToastNotify.py +++ b/module/plugins/hooks/WindowsPhoneToastNotify.py @@ -10,7 +10,7 @@ from module.plugins.Hook import Hook class WindowsPhoneToastNotify(Hook): __name__ = "WindowsPhoneToastNotify" __type__ = "hook" - __version__ = "0.04" + __version__ = "0.05" __config__ = [("id" , "str" , "Push ID" , "" ), ("url" , "str" , "Push url" , "" ), @@ -53,7 +53,7 @@ class WindowsPhoneToastNotify(Hook): self.notify(_("Package finished"), pypack.name) - def allDownloadsProcessed(self, thread): + def allDownloadsProcessed(self): if not self.getConfig("notifyprocessed"): return False |