diff options
| author | 2013-08-23 12:27:08 +0200 | |
|---|---|---|
| committer | 2013-08-23 12:28:55 +0200 | |
| commit | 1596ddd86475b2d1e2c72f7c3f294a7ac1413d77 (patch) | |
| tree | 5eb8cb026ccbc466cd8e7f1848843c6c2c22be27 /pyload/plugins/addons | |
| parent | Moving settings from the account to the hoster plugin (diff) | |
| download | pyload-1596ddd86475b2d1e2c72f7c3f294a7ac1413d77.tar.xz | |
WindowsPhoneToastNotify: fixed string(cherry picked from commit 5255e83a457fc99b5ba8f14160c320f20c48e56f)
Diffstat (limited to 'pyload/plugins/addons')
| -rw-r--r-- | pyload/plugins/addons/WindowsPhoneToastNotify.py | 5 | 
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):  | 
