summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/addon/WindowsPhoneNotify.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 12:44:15 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 12:44:15 +0100
commitce103ce1e60661f7bcdf6a033335134de61d48b1 (patch)
tree29b9421062cc8341dc10b6ca65e9a64802c3db71 /pyload/plugin/addon/WindowsPhoneNotify.py
parent.min.css -> .css (diff)
downloadpyload-ce103ce1e60661f7bcdf6a033335134de61d48b1.tar.xz
Prepare to merging
Diffstat (limited to 'pyload/plugin/addon/WindowsPhoneNotify.py')
-rw-r--r--pyload/plugin/addon/WindowsPhoneNotify.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/addon/WindowsPhoneNotify.py b/pyload/plugin/addon/WindowsPhoneNotify.py
index 45324fbdb..b9710c2f0 100644
--- a/pyload/plugin/addon/WindowsPhoneNotify.py
+++ b/pyload/plugin/addon/WindowsPhoneNotify.py
@@ -8,11 +8,11 @@ from pyload.plugin.Addon import Addon
class WindowsPhoneNotify(Addon):
- __name = "WindowsPhoneNotify"
- __type = "addon"
- __version = "0.07"
+ __name__ = "WindowsPhoneNotify"
+ __type__ = "addon"
+ __version__ = "0.07"
- __config = [("id" , "str" , "Push ID" , "" ),
+ __config__ = [("id" , "str" , "Push ID" , "" ),
("url" , "str" , "Push url" , "" ),
("notifycaptcha" , "bool", "Notify captcha request" , True ),
("notifypackage" , "bool", "Notify package finished" , True ),
@@ -20,9 +20,9 @@ class WindowsPhoneNotify(Addon):
("timeout" , "int" , "Timeout between captchas in seconds" , 5 ),
("force" , "bool", "Send notifications if client is connected", False)]
- __description = """Send push notifications to Windows Phone"""
- __license = "GPLv3"
- __authors = [("Andy Voigt", "phone-support@hotmail.de"),
+ __description__ = """Send push notifications to Windows Phone"""
+ __license__ = "GPLv3"
+ __authors__ = [("Andy Voigt", "phone-support@hotmail.de"),
("Walter Purcaro", "vuolter@gmail.com")]