summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/container/TXT.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/TXT.py
parentFix plugins to work on 0.4.10 (diff)
downloadpyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz
Diffstat (limited to 'pyload/plugin/container/TXT.py')
-rw-r--r--pyload/plugin/container/TXT.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/container/TXT.py b/pyload/plugin/container/TXT.py
index 2bf5bf2aa..0f90f6b5a 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")]