]> git.phdru.name Git - bookmarks_db.git/commitdiff
Ignore case for comparison.
authorOleg Broytman <phd@phdru.name>
Thu, 11 Oct 2007 15:56:22 +0000 (15:56 +0000)
committerOleg Broytman <phd@phdru.name>
Thu, 11 Oct 2007 15:56:22 +0000 (15:56 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@90 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

Robots/parse_html.py

index 90b777b4e97a2754c2bfc33d2e4f9ff966f6d0b5..c6a72f62fcff0f4987357830372b38aae03dd17a 100755 (executable)
@@ -71,15 +71,13 @@ class HTMLParser(_HTMLParser):
       for attrname, value in attrs:
          if value:
             value = value.strip().lower()
-            if (attrname == 'rel') and (value in ('icon', 'shortcut icon')):
+            if (attrname == 'rel') and (value.lower() in ('icon', 'shortcut icon')):
                has_icon = True
             elif attrname == 'href':
                href = value
 
       if has_icon:
          self.icon = href
-      else:
-         self.icon = None
 
 
 import re