summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/addon/AndroidPhoneNotify.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/AndroidPhoneNotify.py
parent.min.css -> .css (diff)
downloadpyload-ce103ce1e60661f7bcdf6a033335134de61d48b1.tar.xz
Prepare to merging
Diffstat (limited to 'pyload/plugin/addon/AndroidPhoneNotify.py')
-rw-r--r--pyload/plugin/addon/AndroidPhoneNotify.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/addon/AndroidPhoneNotify.py b/pyload/plugin/addon/AndroidPhoneNotify.py
index 148008116..2b4f8fcca 100644
--- a/pyload/plugin/addon/AndroidPhoneNotify.py
+++ b/pyload/plugin/addon/AndroidPhoneNotify.py
@@ -7,20 +7,20 @@ from pyload.plugin.Addon import Addon
class AndroidPhoneNotify(Addon):
- __name = "AndroidPhoneNotify"
- __type = "addon"
- __version = "0.05"
+ __name__ = "AndroidPhoneNotify"
+ __type__ = "addon"
+ __version__ = "0.05"
- __config = [("apikey" , "str" , "API key" , "" ),
+ __config__ = [("apikey" , "str" , "API key" , "" ),
("notifycaptcha" , "bool", "Notify captcha request" , True ),
("notifypackage" , "bool", "Notify package finished" , True ),
("notifyprocessed", "bool", "Notify processed packages status" , True ),
("timeout" , "int" , "Timeout between captchas in seconds" , 5 ),
("force" , "bool", "Send notifications if client is connected", False)]
- __description = """Send push notifications to your Android Phone using notifymyandroid.com"""
- __license = "GPLv3"
- __authors = [("Steven Kosyra", "steven.kosyra@gmail.com"),
+ __description__ = """Send push notifications to your Android Phone using notifymyandroid.com"""
+ __license__ = "GPLv3"
+ __authors__ = [("Steven Kosyra", "steven.kosyra@gmail.com"),
("Walter Purcaro", "vuolter@gmail.com")]