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)