]> git.phdru.name Git - bookmarks_db.git/blobdiff - parse_html/bkmk_parse_html.py
Fix(Py3): Fix `unicode` compatibility
[bookmarks_db.git] / parse_html / bkmk_parse_html.py
index 6afb7f9df735f6a487b6b7537fc23f2c3daa71c2..8d6cb7c4e121d7e2a7b99c571e524ff75accf98c 100644 (file)
@@ -14,6 +14,8 @@ __all__ = ['parse_html', 'parse_filename', 'universal_charset']
 import codecs
 import os
 
+from ..compat import unicode
+
 try:
     from . import bkmk_ph_beautifulsoup4
 except ImportError:
@@ -167,7 +169,7 @@ def parse_html(html_text, charset=None, log=None):
     converted_title = title = parser.title
     if title and (not parser.charset):
         try:
-            unicode(title, "ascii")
+            title.decode("ascii")
         except UnicodeDecodeError:
             parser.charset = DEFAULT_CHARSET
 
@@ -186,7 +188,7 @@ def parse_html(html_text, charset=None, log=None):
             if log: log("   title          : %s" % title)
             if parser.charset != universal_charset:
                 try:
-                    converted_title = unicode(title, parser.charset).\
+                    converted_title = title.decode(parser.charset).\
                         encode(universal_charset)
                 except UnicodeError:
                     if log:
@@ -194,7 +196,7 @@ def parse_html(html_text, charset=None, log=None):
                             "converting from %s"
                             % (parser.charset, DEFAULT_CHARSET))
                     converted_title = \
-                        unicode(title, DEFAULT_CHARSET, "replace").\
+                        title.decode(DEFAULT_CHARSET, "replace").\
                         encode(universal_charset, "replace")
                     parser.charset = DEFAULT_CHARSET
             if log and (converted_title != title):