summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/WindowsPhoneToastNotify.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-10-23 13:03:37 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-10-23 13:03:37 +0200
commit29a62c4b9886d31bfa4b5e70db44eb59330bbe28 (patch)
tree47bb81dfb3eba95944dbf1efeb1096477cad8c4e /module/plugins/hooks/WindowsPhoneToastNotify.py
parentNCryptIn: better folder name detect (diff)
parentHosters: replaced line continuation with brackets (diff)
downloadpyload-29a62c4b9886d31bfa4b5e70db44eb59330bbe28.tar.xz
Merge pull request #331 from vuolter/s/hoster_lc
Hosters: replace line continuation with brackets
Diffstat (limited to 'module/plugins/hooks/WindowsPhoneToastNotify.py')
-rw-r--r--module/plugins/hooks/WindowsPhoneToastNotify.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/WindowsPhoneToastNotify.py b/module/plugins/hooks/WindowsPhoneToastNotify.py
index 888862575..d110f7896 100644
--- a/module/plugins/hooks/WindowsPhoneToastNotify.py
+++ b/module/plugins/hooks/WindowsPhoneToastNotify.py
@@ -34,9 +34,9 @@ class WindowsPhoneToastNotify(Hook):
self.info = {}
def getXmlData(self):
- myxml = "<?xml version='1.0' encoding='utf-8'?> <wp:Notification xmlns:wp='WPNotification'> " \
- "<wp:Toast> <wp:Text1>Pyload Mobile</wp:Text1> <wp:Text2>Captcha waiting!</wp:Text2> " \
- "</wp:Toast> </wp:Notification>"
+ myxml = ("<?xml version='1.0' encoding='utf-8'?> <wp:Notification xmlns:wp='WPNotification'> "
+ "<wp:Toast> <wp:Text1>Pyload Mobile</wp:Text1> <wp:Text2>Captcha waiting!</wp:Text2> "
+ "</wp:Toast> </wp:Notification>")
return myxml
def doRequest(self):