summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2009-11-10 21:08:12 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2009-11-10 21:08:12 +0100
commita3eed7e3d5e412e7370e09838e9c05e3af971fb3 (patch)
treedf78b00b09b03394b44e3da46d04ff553fdea26c /module/plugins
parentnew plugin for hotfile.com (diff)
downloadpyload-a3eed7e3d5e412e7370e09838e9c05e3af971fb3.tar.xz
removed debug stuff from hotfile plugin
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/HotfileCom.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/module/plugins/HotfileCom.py b/module/plugins/HotfileCom.py
index e994b1e87..10a8fd5a8 100644
--- a/module/plugins/HotfileCom.py
+++ b/module/plugins/HotfileCom.py
@@ -52,8 +52,6 @@ class HotfileCom(Plugin):
def download_html(self):
self.url = self.parent.url
self.html = self.req.load(self.url)
- with open("hotfile_dump_1.html", "w") as f:
- f.write(self.html)
def get_file_url(self):
""" returns the absolute downloadable filepath
@@ -106,8 +104,6 @@ class HotfileCom(Plugin):
all_the_tuples = re.findall(r"<input\stype=hidden\sname=(\S*)\svalue=(\S*)>", herewego)
self.htmlwithlink = self.req.load(self.url, None, all_the_tuples)
- with open("hotfile_dump_2.html", "w") as f:
- f.write(self.htmlwithlink)
def proceed(self, url, location):