diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 22:38:45 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 22:38:45 +0100 |
commit | 270c1ee85edcd1e9e10511833b422d93dfca192a (patch) | |
tree | eb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/container/CCF.py | |
parent | Fix plugins to work on 0.4.10 (diff) | |
download | pyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz |
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")] |