summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/addon/AndroidPhoneNotify.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-13 08:21:50 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-13 08:21:50 +0200
commit486adc1874e463b1563ad2394b216faff388b10d (patch)
tree58009056cb67e35930d49a9dd6af45adf6a8d434 /pyload/plugin/addon/AndroidPhoneNotify.py
parentFix https://github.com/pyload/pyload/issues/1349 (diff)
downloadpyload-486adc1874e463b1563ad2394b216faff388b10d.tar.xz
Prepare plugins to merging from stable
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 8332f668d..d3b390e6e 100644
--- a/pyload/plugin/addon/AndroidPhoneNotify.py
+++ b/pyload/plugin/addon/AndroidPhoneNotify.py
@@ -7,11 +7,11 @@ from pyload.plugin.Addon import Addon, Expose
class AndroidPhoneNotify(Addon):
- __name = "AndroidPhoneNotify"
- __type = "addon"
- __version = "0.07"
+ __name__ = "AndroidPhoneNotify"
+ __type__ = "addon"
+ __version__ = "0.07"
- __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 packages processed" , True ),
@@ -21,9 +21,9 @@ class AndroidPhoneNotify(Addon):
("sendpermin" , "int" , "Max notifications per minute" , 12 ),
("ignoreclient" , "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" )]