Forgot to remove the creation of debugging files.

This commit is contained in:
Jeremy Fincher 2003-04-02 09:53:50 +00:00
parent 089d032b34
commit 33847807f7

View File

@ -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)