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

View file

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