From 3a04eba163f0c577ebfd29c160826d5226019375 Mon Sep 17 00:00:00 2001 From: spoob Date: Tue, 16 Jun 2009 22:57:05 +0200 Subject: fixed request bug --- Plugins/RapidshareCom.py | 2 +- module/network/Request.py | 7 +++---- module/thread_list.py | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Plugins/RapidshareCom.py b/Plugins/RapidshareCom.py index 24847386a..0adae9c15 100644 --- a/Plugins/RapidshareCom.py +++ b/Plugins/RapidshareCom.py @@ -133,4 +133,4 @@ class RapidshareCom(Plugin): if self.config['premium']: self.req.add_auth(self.config['username'], self.config['password']) - self.req.download(url, location) \ No newline at end of file + self.req.download(url, location) diff --git a/module/network/Request.py b/module/network/Request.py index 2b3545dd8..0b518cf66 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -130,11 +130,10 @@ class Request: if cookies: self.add_cookies(req) #add cookies + rep = self.opener.open(req) - rep = self.opener.open(req) - - for cookie in self.cj.make_cookies(rep, req): - self.cookies.append(cookie) + for cookie in self.cj.make_cookies(rep, req): + self.cookies.append(cookie) if not self.dl: self.dl = True diff --git a/module/thread_list.py b/module/thread_list.py index a7e92b77d..677fe7ecc 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) -- cgit v1.2.3