diff options
author | Stefano <l.stickell@yahoo.it> | 2013-08-23 12:27:08 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-08-23 12:27:08 +0200 |
commit | 5255e83a457fc99b5ba8f14160c320f20c48e56f (patch) | |
tree | dfeff7ce5cbf7d95895fd48d2a4a3c94ad9c4bf9 /module | |
parent | Ryushare: code cleanu+ test link (diff) | |
download | pyload-5255e83a457fc99b5ba8f14160c320f20c48e56f.tar.xz |
WindowsPhoneToastNotify: fixed string
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/WindowsPhoneToastNotify.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hooks/WindowsPhoneToastNotify.py b/module/plugins/hooks/WindowsPhoneToastNotify.py index c9a84982f..103180e3a 100644 --- a/module/plugins/hooks/WindowsPhoneToastNotify.py +++ b/module/plugins/hooks/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): |