]> git.phdru.name Git - bookmarks_db.git/commitdiff
Fixed a bug.
authorOleg Broytman <phd@phdru.name>
Fri, 13 Aug 2010 15:46:30 +0000 (15:46 +0000)
committerOleg Broytman <phd@phdru.name>
Fri, 13 Aug 2010 15:46:30 +0000 (15:46 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@284 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

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')