From 8ee72fceec47100bd1811a538c1554cd3b7613a9 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Wed, 25 Jan 2006 23:16:32 +0000 Subject: fix typo (thanks Andrew Kim ) git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@218 86f53f14-5ff3-0310-afe5-9b438ce3f40c --- parsers/html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parsers/html.py b/parsers/html.py index eae68e4..c15043e 100644 --- a/parsers/html.py +++ b/parsers/html.py @@ -108,7 +108,7 @@ class _MyHTMLParser(HTMLParser.HTMLParser): try: return HTMLParser.HTMLParser.check_for_whole_start_tag(self, i) except AssertionError, e: - debugio.debug("parsers.html._MyHTMLParser.check_for_whole_start_tag(): caugt assertion error") + debugio.debug("parsers.html._MyHTMLParser.check_for_whole_start_tag(): caught assertion error") def handle_starttag(self, tag, attrs): """Handle start tags in html.""" @@ -228,7 +228,7 @@ def parse(content, link): parser.close() except Exception, e: # ignore (but log) all errors - debugio.debug("parsers.html.parse(): caugt exception: "+str(e)) + debugio.debug("parsers.html.parse(): caught exception: "+str(e)) # check for parser errors if parser.errmsg is not None: debugio.debug("parsers.html.parse(): problem parsing html: "+parser.errmsg) -- cgit v1.2.3