diff options
author | spoob <spoob@gmx.de> | 2009-12-15 22:47:26 +0100 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-12-15 22:47:26 +0100 |
commit | 4e86c166dc20a8f4d1000e65120508c425f5b794 (patch) | |
tree | a448f511e2d6fef2f58fdb666d29a2cfa00b612e /module/plugins | |
parent | new Django webinterface(in development), small fixes (diff) | |
download | pyload-4e86c166dc20a8f4d1000e65120508c425f5b794.tar.xz |
Fixed LinkList.py and .part renaming
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/LinkList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/LinkList.py b/module/plugins/LinkList.py index dba78ffd2..092e3ef10 100644 --- a/module/plugins/LinkList.py +++ b/module/plugins/LinkList.py @@ -32,7 +32,7 @@ class LinkList(Plugin): links = txt.readlines() for link in links: if link != "\n": - tmpLinks.append(link) + tmpLinks.append(link.replace("\n", "")) txt.close() if not self.parent.core.config['general']['debug_mode']: |