diff options
| author | 2015-02-19 16:02:32 +0100 | |
|---|---|---|
| committer | 2015-02-19 16:02:32 +0100 | |
| commit | c61412841c8ea6c456f7d3472166d81132b56e95 (patch) | |
| tree | cbf88919b646af639438c398c50a144dc0c8f84a /module | |
| parent | [XFileSharingPro] Remove 180upload.com from HOSTER_BUILTIN (diff) | |
| download | pyload-c61412841c8ea6c456f7d3472166d81132b56e95.tar.xz | |
[LinkList] Rename to TXT
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/container/TXT.py (renamed from module/plugins/container/LinkList.py) | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/module/plugins/container/LinkList.py b/module/plugins/container/TXT.py index ccb9b2fa3..585da8ac6 100644 --- a/module/plugins/container/LinkList.py +++ b/module/plugins/container/TXT.py @@ -6,16 +6,16 @@ from module.plugins.Container import Container  from module.utils import fs_encode -class LinkList(Container): -    __name__    = "LinkList" +class TXT(Container): +    __name__    = "TXT"      __type__    = "container" -    __version__ = "0.14" +    __version__ = "0.15" -    __pattern__ = r'.+\.txt$' -    __config__ = [("flush"   , "bool"  , "Flush list after adding", False  ), -                  ("encoding", "string", "File encoding"          , "utf-8")] +    __pattern__ = r'.+\.(txt|text)$' +    __config__  = [("flush"   , "bool"  , "Flush list after adding", False  ), +                   ("encoding", "string", "File encoding"          , "utf-8")] -    __description__ = """Read link lists in txt format""" +    __description__ = """Read link lists in plain text formats"""      __license__     = "GPLv3"      __authors__     = [("spoob", "spoob@pyload.org"),                         ("jeix", "jeix@hasnomail.com")] | 
