summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/container/CCF.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
commit270c1ee85edcd1e9e10511833b422d93dfca192a (patch)
treeeb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/container/CCF.py
parentFix plugins to work on 0.4.10 (diff)
downloadpyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz
Diffstat (limited to 'pyload/plugin/container/CCF.py')
-rw-r--r--pyload/plugin/container/CCF.py14
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")]