diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:28:41 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:28:41 +0200 |
commit | 614e1de2aaccbd2d7fa2c3a099cf5e36673ae322 (patch) | |
tree | 302d825ac9ff8077f24efa711336fa15efd6f027 /module/plugins/container/CCF.py | |
parent | Replace __pattern__ double quotes with single (diff) | |
download | pyload-614e1de2aaccbd2d7fa2c3a099cf5e36673ae322.tar.xz |
Fix some container __pattern__
Merges vuolter/pyload@770a11f
Diffstat (limited to 'module/plugins/container/CCF.py')
-rw-r--r-- | module/plugins/container/CCF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/container/CCF.py b/module/plugins/container/CCF.py index 2460dffe8..8aec97f6a 100644 --- a/module/plugins/container/CCF.py +++ b/module/plugins/container/CCF.py @@ -12,7 +12,7 @@ from os.path import exists, join class CCF(Container): __name__ = "CCF" __version__ = "0.2" - __pattern__ = r'(?!http://).*\.ccf$' + __pattern__ = r'.+\.ccf' __description__ = """CCF container decrypter plugin""" __author_name__ = "Willnix" __author_mail__ = "Willnix@pyload.org" |