From: Oleg Broytman Date: Tue, 4 Mar 2008 10:52:30 +0000 (+0000) Subject: Check root. X-Git-Tag: v4.5.3~177 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=dd1da7e165f9dff0bf1e4718e8c9afd83b4659ca;hp=39c6f1c85c93c021fca528bb1a5cca91f53c196c;p=bookmarks_db.git Check root. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@199 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- 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