From 9b2c446206ca6c1e2d1c165c445115135bedfdb0 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 23 Feb 2008 22:40:56 +0000 Subject: [PATCH] It is not HTTP charset, it is guessed charset. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@179 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- Robots/parse_html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robots/parse_html.py b/Robots/parse_html.py index 6fe1df9..72ca782 100755 --- a/Robots/parse_html.py +++ b/Robots/parse_html.py @@ -85,7 +85,7 @@ def parse_html(filename, charset=None, log=None): if parser.meta_charset: if log: log(" META charset : %s" % parser.charset) else: - if log: log(" HTTP charset : %s" % parser.charset) + if log: log(" guessed charset: %s" % parser.charset) if log: log(" current charset: %s" % universal_charset) if log: log(" title : %s" % title) try: -- 2.39.2