diff options
author | spoob <spoob@gmx.de> | 2009-12-19 22:23:29 +0100 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-12-19 22:23:29 +0100 |
commit | 73ce2440528681c713085c2ffb1947718e9022c5 (patch) | |
tree | 910e36b4fd62f0e111d66ec705da24257fe7047b /module/plugins/LinkList.py | |
parent | Fixed file_exists function for local files (diff) | |
download | pyload-73ce2440528681c713085c2ffb1947718e9022c5.tar.xz |
Fixed normal hoster file_exists function
Diffstat (limited to 'module/plugins/LinkList.py')
-rw-r--r-- | module/plugins/LinkList.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/LinkList.py b/module/plugins/LinkList.py index 92508ce29..fc737e8c5 100644 --- a/module/plugins/LinkList.py +++ b/module/plugins/LinkList.py @@ -29,11 +29,11 @@ class LinkList(Plugin): if link != "\n": tmpLinks.append(link.replace("\n", "")) txt.close() - - if not self.parent.core.config['general']['debug_mode']: - txt = open(linkList, 'w') - txt.write("") - txt.close() +#~ + #~ if not self.parent.core.config['general']['debug_mode']: + #~ txt = open(linkList, 'w') + #~ txt.write("") + #~ txt.close() #@TODO: maybe delete read txt file? self.links = tmpLinks |