This uses cgi.parse_header() in Checker.checkforhtml(), so that
webchecker recognises the mime type text/html even if options
are specified.
This commit is contained in:
Walter Dörwald 2002-06-06 17:01:21 +00:00
parent 478d47a168
commit 88a20baa77
1 changed files with 2 additions and 1 deletions

View File

@ -117,6 +117,7 @@ import pickle
import urllib
import urlparse
import sgmllib
import cgi
import mimetypes
import robotparser
@ -543,7 +544,7 @@ class Checker:
def checkforhtml(self, info, url):
if info.has_key('content-type'):
ctype = string.lower(info['content-type'])
ctype = string.lower(cgi.parse_header(info['content-type'])[0])
else:
if url[-1:] == "/":
return 1