diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-10 19:07:53 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-10 19:07:53 +0100 |
commit | 2439bc22671dde697817291b721bfddb792a93b4 (patch) | |
tree | dad4615b7f1d664263af6a85392282329aa0b8e0 /pyload/plugins/container/CCF.py | |
parent | Revert plugin directory structure (diff) | |
download | pyload-2439bc22671dde697817291b721bfddb792a93b4.tar.xz |
Fix plugins key attributes
Diffstat (limited to 'pyload/plugins/container/CCF.py')
-rw-r--r-- | pyload/plugins/container/CCF.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyload/plugins/container/CCF.py b/pyload/plugins/container/CCF.py index 1c3991c44..9488d75f9 100644 --- a/pyload/plugins/container/CCF.py +++ b/pyload/plugins/container/CCF.py @@ -15,14 +15,14 @@ from pyload.utils import safe_join class CCF(Container): - __name__ = "CCF" - __version__ = "0.20" + __name = "CCF" + __version = "0.20" - __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")] def decrypt(self, pyfile): |