diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-10-16 15:27:36 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-10-16 15:27:36 +0200 |
commit | ec79ab7187eda441f3c3194b836967049ca23cc9 (patch) | |
tree | 064d4f6085cd1050181120ffeeff381082ca3c81 /module/plugins/hooks/WindowsPhoneToastNotify.py | |
parent | Merge pull request #328 from vuolter/s/dead_crypters (diff) | |
download | pyload-ec79ab7187eda441f3c3194b836967049ca23cc9.tar.xz |
Hosters: replaced line continuation with brackets
Diffstat (limited to 'module/plugins/hooks/WindowsPhoneToastNotify.py')
-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): |