summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-08-23 12:27:08 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-08-23 12:28:55 +0200
commit1596ddd86475b2d1e2c72f7c3f294a7ac1413d77 (patch)
tree5eb8cb026ccbc466cd8e7f1848843c6c2c22be27
parentMoving settings from the account to the hoster plugin (diff)
downloadpyload-1596ddd86475b2d1e2c72f7c3f294a7ac1413d77.tar.xz
WindowsPhoneToastNotify: fixed string(cherry picked from commit 5255e83a457fc99b5ba8f14160c320f20c48e56f)
-rw-r--r--pyload/plugins/addons/WindowsPhoneToastNotify.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pyload/plugins/addons/WindowsPhoneToastNotify.py b/pyload/plugins/addons/WindowsPhoneToastNotify.py
index c9a84982f..103180e3a 100644
--- a/pyload/plugins/addons/WindowsPhoneToastNotify.py
+++ b/pyload/plugins/addons/WindowsPhoneToastNotify.py
@@ -33,8 +33,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):