diff options
author | sleeper <devnull@localhost> | 2010-04-13 00:07:17 +0200 |
---|---|---|
committer | sleeper <devnull@localhost> | 2010-04-13 00:07:17 +0200 |
commit | cd146aecfdf7045aeaf4f34c1f11f8a232b0be02 (patch) | |
tree | 8c1badf15de671827c0a954edcebdf992e34f998 /module | |
parent | captcha fix (diff) | |
download | pyload-cd146aecfdf7045aeaf4f34c1f11f8a232b0be02.tar.xz |
filefactory fix
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/FilefactoryCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index 84cdc8dca..873fb548e 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -60,7 +60,7 @@ class FilefactoryCom(Plugin): if self.html == None: self.download_html() if not self.want_reconnect: - file_url = re.search('a href=\"(.*?)\".*?button\.basic\.jpg', self.htmlwithlink).group(1) + file_url = re.search('a href=\"(.*?)\" id=\"downloadLinkTarget\"', self.htmlwithlink).group(1) #print file_url return file_url else: |