From 33847807f7fad80a6ba4eb5b7fd5fc7e182b79c7 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 2 Apr 2003 09:53:50 +0000 Subject: [PATCH] Forgot to remove the creation of debugging files. --- plugins/Http.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/Http.py b/plugins/Http.py index 060994fb9..e356b0c05 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -278,9 +278,6 @@ class Http(callbacks.Privmsg): fd = urllib2.urlopen(url) html = fd.read() fd.close() - fd = file('%s.netcraft' % hostname, 'w') - fd.write(html) - fd.close() m = self._netcraftre.search(html) if m: html = m.group(1)