diff options
author | 2015-04-13 08:21:50 +0200 | |
---|---|---|
committer | 2015-04-13 08:21:50 +0200 | |
commit | 486adc1874e463b1563ad2394b216faff388b10d (patch) | |
tree | 58009056cb67e35930d49a9dd6af45adf6a8d434 /pyload/plugin/container | |
parent | Fix https://github.com/pyload/pyload/issues/1349 (diff) | |
download | pyload-486adc1874e463b1563ad2394b216faff388b10d.tar.xz |
Prepare plugins to merging from stable
Diffstat (limited to 'pyload/plugin/container')
-rw-r--r-- | pyload/plugin/container/CCF.py | 14 | ||||
-rw-r--r-- | pyload/plugin/container/DLC.py | 14 | ||||
-rw-r--r-- | pyload/plugin/container/RSDF.py | 14 | ||||
-rw-r--r-- | pyload/plugin/container/TXT.py | 16 |
4 files changed, 29 insertions, 29 deletions
diff --git a/pyload/plugin/container/CCF.py b/pyload/plugin/container/CCF.py index e663264d2..65f96033a 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 b2bfea30e..04dabb6b2 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 6f56ec06a..e43eb4c2b 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.29" + __name__ = "RSDF" + __type__ = "container" + __version__ = "0.29" - __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 4ef29c0b7..75940f55d 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")] |