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/hoster/FileApeCom.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/hoster/FileApeCom.py')
-rw-r--r-- | module/plugins/hoster/FileApeCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FileApeCom.py b/module/plugins/hoster/FileApeCom.py index 2ba01f3a0..dcfb4b3ca 100644 --- a/module/plugins/hoster/FileApeCom.py +++ b/module/plugins/hoster/FileApeCom.py @@ -46,8 +46,8 @@ class FileApeCom(Hoster): self.wait() self.html = self.load(continuePage) - linkMatch = \ - re.search(r"<div style=\"text-align:center; font-size: 30px;\"><a href=\"(http://.*?)\"", self.html) + linkMatch = re.search(r"<div style=\"text-align:center; font-size: 30px;\"><a href=\"(http://.*?)\"", self.html) + if not linkMatch: linkMatch = re.search(r"\"(http://tx\d+\.fileape\.com/[a-z]+/.*?)\"", self.html) if linkMatch: |