diff options
Diffstat (limited to 'pyload/plugin/container/CCF.py')
-rw-r--r-- | pyload/plugin/container/CCF.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/container/CCF.py b/pyload/plugin/container/CCF.py index 311eb2006..c2771a57b 100644 --- a/pyload/plugin/container/CCF.py +++ b/pyload/plugin/container/CCF.py @@ -13,15 +13,15 @@ from pyload.utils import fs_encode, safe_join class CCF(Container): - __name__ = "CCF" - __type__ = "container" - __version__ = "0.23" + __name = "CCF" + __type = "container" + __version = "0.23" - __pattern__ = r'.+\.ccf$' + __pattern = r'.+\.ccf$' - __description__ = """CCF container decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("Willnix", "Willnix@pyload.org"), + __description = """CCF container decrypter plugin""" + __license = "GPLv3" + __authors = [("Willnix", "Willnix@pyload.org"), ("Walter Purcaro", "vuolter@gmail.com")] |