]> git.phdru.name Git - bookmarks_db.git/blobdiff - Robots/parse_html_lxml.py
Fixed a bug.
[bookmarks_db.git] / Robots / parse_html_lxml.py
index 638af4e972cab376c1fa2f142494a8eea74b9cce..8f658e1a026d9d16789f69bf43c5cf8a8d45fd83 100644 (file)
@@ -11,7 +11,7 @@ from parse_html_util import HTMLParser
 def parse_html(filename, charset=None, log=None):
     html_tree = parse(filename)
 
-    if t.getroot() is None:
+    if html_tree.getroot() is None:
         return None
 
     title = html_tree.findtext('head/title')