From dd1da7e165f9dff0bf1e4718e8c9afd83b4659ca Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Tue, 4 Mar 2008 10:52:30 +0000 Subject: [PATCH] Check root. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@199 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- Robots/parse_html_beautifulsoup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Robots/parse_html_beautifulsoup.py b/Robots/parse_html_beautifulsoup.py index 93a4d6f..c2a4032 100644 --- a/Robots/parse_html_beautifulsoup.py +++ b/Robots/parse_html_beautifulsoup.py @@ -60,11 +60,15 @@ def _parse_html(filename, charset): def parse_html(filename, charset=None, log=None): root = _parse_html(filename, charset) + if root is None: + return None _charset = root.originalEncoding if _charset in ("ISO-8859-2", "windows-1252", "MacCyrillic"): # Replace default _charset = DEFAULT_CHARSET root = _parse_html(filename, _charset) + if root is None: + return None try: html = root.html -- 2.39.5