X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Writers%2Fbkmk_whtml.py;h=06fb9cf2049fe108cbf125dda42ae2d5b07ed262;hb=f6c7680eb82ae0db48ce4c17a9b259e159ef8bd8;hp=09d99894935d180d78ce2608be8fc611287a56d5;hpb=8cd64d1c6d8e704802e89eb209884c9675914c07;p=bookmarks_db.git diff --git a/Writers/bkmk_whtml.py b/Writers/bkmk_whtml.py index 09d9989..06fb9cf 100644 --- a/Writers/bkmk_whtml.py +++ b/Writers/bkmk_whtml.py @@ -57,8 +57,8 @@ class writer_html(Writer): if b.keyword: self.outfile.write(' SHORTCUTURL="%s"' % b.keyword) if b.icon_href: value = b.icon_href - if isinstance(value, unicode): - value = value.encode('utf-8') + #if isinstance(value, unicode): + # value = value.encode('utf-8') self.outfile.write(' ICON_URI="%s"' % value) if b.icon: self.outfile.write(' ICON="%s"' % b.icon) if b.charset: self.outfile.write(' LAST_CHARSET="%s"' % b.charset)