diff options
author | Paul King <devnull@localhost> | 2011-05-14 16:34:40 +0200 |
---|---|---|
committer | Paul King <devnull@localhost> | 2011-05-14 16:34:40 +0200 |
commit | 7ed9b21b29be9579bd390e3f4d124650e43a85c4 (patch) | |
tree | e3a3d13f97de9b68a73dbc74719baa2e5cb3b1af /module/plugins/crypter | |
parent | improved some code style issues (diff) | |
download | pyload-7ed9b21b29be9579bd390e3f4d124650e43a85c4.tar.xz |
allow remote rsdf on linksave.in #310
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/LinkSaveIn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/LinkSaveIn.py b/module/plugins/crypter/LinkSaveIn.py index 03c385cb3..8809bd7d1 100644 --- a/module/plugins/crypter/LinkSaveIn.py +++ b/module/plugins/crypter/LinkSaveIn.py @@ -9,8 +9,8 @@ import re class LinkSaveIn(Crypter):
__name__ = "LinkSaveIn"
__type__ = "crypter"
- __pattern__ = r"http://(www\.)?linksave.in/([a-z0-9]+)"
- __version__ = "1.0"
+ __pattern__ = r"http://(www\.)?linksave.in/([a-z0-9]+)$"
+ __version__ = "1.01"
__description__ = """LinkSave.in Crypter Plugin"""
__author_name__ = ("fragonib")
__author_mail__ = ("fragonib[AT]yahoo[DOT]es")
|