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/hoster/FileApeCom.py | |
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/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: |