summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/container
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 12:44:15 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 12:44:15 +0100
commitce103ce1e60661f7bcdf6a033335134de61d48b1 (patch)
tree29b9421062cc8341dc10b6ca65e9a64802c3db71 /pyload/plugin/container
parent.min.css -> .css (diff)
downloadpyload-ce103ce1e60661f7bcdf6a033335134de61d48b1.tar.xz
Prepare to merging
Diffstat (limited to 'pyload/plugin/container')
-rw-r--r--pyload/plugin/container/CCF.py14
-rw-r--r--pyload/plugin/container/DLC.py14
-rw-r--r--pyload/plugin/container/RSDF.py14
-rw-r--r--pyload/plugin/container/TXT.py16
4 files changed, 29 insertions, 29 deletions
diff --git a/pyload/plugin/container/CCF.py b/pyload/plugin/container/CCF.py
index 447f0bc3c..f39318208 100644
--- a/pyload/plugin/container/CCF.py
+++ b/pyload/plugin/container/CCF.py
@@ -13,15 +13,15 @@ from pyload.utils import fs_encode, fs_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")]
diff --git a/pyload/plugin/container/DLC.py b/pyload/plugin/container/DLC.py
index 451bab06f..8b8a0199b 100644
--- a/pyload/plugin/container/DLC.py
+++ b/pyload/plugin/container/DLC.py
@@ -12,15 +12,15 @@ from pyload.utils import decode, fs_encode
class DLC(Container):
- __name = "DLC"
- __type = "container"
- __version = "0.24"
+ __name__ = "DLC"
+ __type__ = "container"
+ __version__ = "0.24"
- __pattern = r'.+\.dlc$'
+ __pattern__ = r'.+\.dlc$'
- __description = """DLC container decrypter plugin"""
- __license = "GPLv3"
- __authors = [("RaNaN", "RaNaN@pyload.org"),
+ __description__ = """DLC container decrypter plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("RaNaN", "RaNaN@pyload.org"),
("spoob", "spoob@pyload.org"),
("mkaay", "mkaay@mkaay.de"),
("Schnusch", "Schnusch@users.noreply.github.com"),
diff --git a/pyload/plugin/container/RSDF.py b/pyload/plugin/container/RSDF.py
index 520ce2e71..c4b743d14 100644
--- a/pyload/plugin/container/RSDF.py
+++ b/pyload/plugin/container/RSDF.py
@@ -12,15 +12,15 @@ from pyload.utils import fs_encode
class RSDF(Container):
- __name = "RSDF"
- __type = "container"
- __version = "0.27"
+ __name__ = "RSDF"
+ __type__ = "container"
+ __version__ = "0.27"
- __pattern = r'.+\.rsdf$'
+ __pattern__ = r'.+\.rsdf$'
- __description = """RSDF container decrypter plugin"""
- __license = "GPLv3"
- __authors = [("RaNaN", "RaNaN@pyload.org"),
+ __description__ = """RSDF container decrypter plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("RaNaN", "RaNaN@pyload.org"),
("spoob", "spoob@pyload.org"),
("Walter Purcaro", "vuolter@gmail.com")]
diff --git a/pyload/plugin/container/TXT.py b/pyload/plugin/container/TXT.py
index 31560f165..9a3df8bf1 100644
--- a/pyload/plugin/container/TXT.py
+++ b/pyload/plugin/container/TXT.py
@@ -7,17 +7,17 @@ from pyload.utils import fs_encode
class TXT(Container):
- __name = "TXT"
- __type = "container"
- __version = "0.15"
+ __name__ = "TXT"
+ __type__ = "container"
+ __version__ = "0.15"
- __pattern = r'.+\.(txt|text)$'
- __config = [("flush" , "bool" , "Flush list after adding", False ),
+ __pattern__ = r'.+\.(txt|text)$'
+ __config__ = [("flush" , "bool" , "Flush list after adding", False ),
("encoding", "string", "File encoding" , "utf-8")]
- __description = """Read link lists in plain text formats"""
- __license = "GPLv3"
- __authors = [("spoob", "spoob@pyload.org"),
+ __description__ = """Read link lists in plain text formats"""
+ __license__ = "GPLv3"
+ __authors__ = [("spoob", "spoob@pyload.org"),
("jeix", "jeix@hasnomail.com")]