diff options
author | spoob <spoob@gmx.de> | 2009-06-16 18:20:21 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-06-16 18:20:21 +0200 |
commit | 1a78a123928063b45c89ecc199086b76727338c9 (patch) | |
tree | d7631bba7778182e43e8a0ddf61909396c10cba1 /module | |
parent | Merge with 91d07331e1a9707a3dccb47a373ac516a7ebca8a (diff) | |
download | pyload-1a78a123928063b45c89ecc199086b76727338c9.tar.xz |
removed wait time for Zippyshare.com
Diffstat (limited to 'module')
-rw-r--r-- | module/thread_list.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/thread_list.py b/module/thread_list.py index 677fe7ecc..a7e92b77d 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -117,8 +117,8 @@ class Thread_List(object): data = data.replace(pyfile.url + '\n', "") - #with open(self.parent.config['link_file'], 'w') as f: - #f.write(data) + with open(self.parent.config['link_file'], 'w') as f: + f.write(data) if pyfile.status.type == "reconnected":#put it back in queque self.py_load_files.insert(0, pyfile) |