diff options
author | 2014-10-06 14:49:16 +0200 | |
---|---|---|
committer | 2014-10-06 14:49:16 +0200 | |
commit | 6f08566dd6c75d76f5cd2c1dc835e0c22838780f (patch) | |
tree | 7350f9e5a1a612e21d789e7daadf536be12ac46d /module/plugins/crypter/FiredriveComFolder.py | |
parent | [SimpleCrypter] Improve patterns (diff) | |
download | pyload-6f08566dd6c75d76f5cd2c1dc835e0c22838780f.tar.xz |
Update SimpleCrypter based plugins
Diffstat (limited to 'module/plugins/crypter/FiredriveComFolder.py')
-rw-r--r-- | module/plugins/crypter/FiredriveComFolder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/FiredriveComFolder.py b/module/plugins/crypter/FiredriveComFolder.py index a94d0847f..4831101cc 100644 --- a/module/plugins/crypter/FiredriveComFolder.py +++ b/module/plugins/crypter/FiredriveComFolder.py @@ -8,7 +8,7 @@ from module.plugins.internal.SimpleCrypter import SimpleCrypter class FiredriveComFolder(SimpleCrypter): __name__ = "FiredriveComFolder" __type__ = "crypter" - __version__ = "0.01" + __version__ = "0.02" __pattern__ = r'https?://(?:www\.)?(firedrive|putlocker)\.com/share/.+' @@ -17,7 +17,7 @@ class FiredriveComFolder(SimpleCrypter): __author_mail__ = "vuolter@gmail.com" LINK_PATTERN = r'<div class="pf_item pf_(file|folder).+?public=\'(.+?)\'' - TITLE_PATTERN = r'>Shared Folder "(?P<title>.+)" | Firedrive<' + TITLE_PATTERN = r'>Shared Folder "(.+)" | Firedrive<' OFFLINE_PATTERN = r'class="sad_face_image"|>No such page here.<' TEMP_OFFLINE_PATTERN = r'>(File Temporarily Unavailable|Server Error. Try again later)' |