From d60040cdc406b0541f0b3f9681a09894f845ba2b Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 13 Apr 2015 10:29:55 +0200 Subject: Revert 486adc1874e463b1563ad2394b216faff388b10d --- pyload/plugin/container/TXT.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'pyload/plugin/container/TXT.py') diff --git a/pyload/plugin/container/TXT.py b/pyload/plugin/container/TXT.py index 75940f55d..4ef29c0b7 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")] -- cgit v1.2.3