diff options
author | 2014-07-20 03:28:23 +0200 | |
---|---|---|
committer | 2014-07-20 03:28:23 +0200 | |
commit | a9f81c043c62abcb3ce38971237693736833fdbe (patch) | |
tree | 5c602d2aa7aefb245c33ad9c51eec44ab861f983 /module/plugins/hoster/FilefactoryCom.py | |
parent | [StreamCz] Parse https (diff) | |
download | pyload-a9f81c043c62abcb3ce38971237693736833fdbe.tar.xz |
Fix hosters SH_COOKIES syntax
Diffstat (limited to 'module/plugins/hoster/FilefactoryCom.py')
-rw-r--r-- | module/plugins/hoster/FilefactoryCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index 0874e1410..013448b09 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -44,7 +44,9 @@ class FilefactoryCom(SimpleHoster): LINK_PATTERN = r'<a href="(https?://[^"]+)"[^>]*><i[^>]*></i> Download with FileFactory Premium</a>' OFFLINE_PATTERN = r'<h2>File Removed</h2>|This file is no longer available' PREMIUM_ONLY_PATTERN = r'>Premium Account Required<' - SH_COOKIES = [('.filefactory.com', 'locale', 'en_US.utf8')] + + SH_COOKIES = [(".filefactory.com", "locale", "en_US.utf8")] + def handleFree(self): self.html = self.load(self.pyfile.url, decode=True) |