diff options
-rw-r--r-- | Plugins/StealthTo.py | 1 | ||||
-rw-r--r-- | module/file_list.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Plugins/StealthTo.py b/Plugins/StealthTo.py index 40d44b159..6d59f4b44 100644 --- a/Plugins/StealthTo.py +++ b/Plugins/StealthTo.py @@ -44,6 +44,5 @@ class StealthTo(Plugin): self.req.load(url + "/web", post={"authenticity_token": ats[i], "id": str(ids[i]), "link": ("download_" + str(ids[i]))}, cookies=True) new_html = self.req.load(url + "/web", post={"authenticity_token": ats[i], "id": str(ids[i]), "link": "1"}, cookies=True) temp_links.append(re.search(r"iframe src=\"(.*)\" frameborder", new_html).group(1)) - print temp_links self.links = temp_links diff --git a/module/file_list.py b/module/file_list.py index 932fb0b13..e8cc49ab2 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -32,7 +32,7 @@ class File_List(object): def set_core(self, core): self.core = core - def new_pyfile(self) + def new_pyfile(self): pyfile = PyLoadFile(self, url) pyfile.download_folder = self.core.config['download_folder'] pyfile.id = self.id |