diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-23 13:03:37 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-23 13:03:37 +0200 |
commit | 29a62c4b9886d31bfa4b5e70db44eb59330bbe28 (patch) | |
tree | 47bb81dfb3eba95944dbf1efeb1096477cad8c4e /module/plugins/hooks | |
parent | NCryptIn: better folder name detect (diff) | |
parent | Hosters: replaced line continuation with brackets (diff) | |
download | pyload-29a62c4b9886d31bfa4b5e70db44eb59330bbe28.tar.xz |
Merge pull request #331 from vuolter/s/hoster_lc
Hosters: replace line continuation with brackets
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/WindowsPhoneToastNotify.py | 6 |
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): |