diff options
Diffstat (limited to 'pyload/plugin/container/TXT.py')
-rw-r--r-- | pyload/plugin/container/TXT.py | 16 |
1 files changed, 8 insertions, 8 deletions
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")] |