diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:28:41 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:23:03 +0200 |
commit | f9c16cb874d7bda3635537a98fe22cf9fda0c2ef (patch) | |
tree | a514138b2549492609b3dc9ba6c6610620fafe6d /pyload/plugins/crypter/RSDF.py | |
parent | Replace __pattern__ double quotes with single (diff) | |
download | pyload-f9c16cb874d7bda3635537a98fe22cf9fda0c2ef.tar.xz |
Fix some container __pattern__
Merges vuolter/pyload@770a11f
(cherry picked from commit 614e1de2aaccbd2d7fa2c3a099cf5e36673ae322)
Conflicts:
module/plugins/container/LinkList.py
Diffstat (limited to 'pyload/plugins/crypter/RSDF.py')
-rw-r--r-- | pyload/plugins/crypter/RSDF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/RSDF.py b/pyload/plugins/crypter/RSDF.py index 7e5f93ea4..9b2c070a5 100644 --- a/pyload/plugins/crypter/RSDF.py +++ b/pyload/plugins/crypter/RSDF.py @@ -9,7 +9,7 @@ from module.plugins.Crypter import Crypter class RSDF(Crypter): __name__ = "RSDF" __version__ = "0.21" - __pattern__ = r'.*\.rsdf' + __pattern__ = r'.+\.rsdf' __description__ = """RSDF container decrypter plugin""" __author_name__ = ("RaNaN", "spoob") __author_mail__ = ("RaNaN@pyload.org", "spoob@pyload.org") |