]> git.phdru.name Git - bookmarks_db.git/commitdiff
Unquote single quote.
authorOleg Broytman <phd@phdru.name>
Mon, 9 Aug 2010 14:51:18 +0000 (14:51 +0000)
committerOleg Broytman <phd@phdru.name>
Mon, 9 Aug 2010 14:51:18 +0000 (14:51 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@248 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

bkmk_objects.py

index e7d1d623b87d2c39d226b6968364bab176f62900..cde26d83019c8f26d33b3d9d7621864cfcf8ef39 100644 (file)
@@ -179,4 +179,5 @@ def unquote_title(title):
    if BKMK_FORMAT == "MOZILLA":
       from HTMLParser import HTMLParser
       title = HTMLParser().unescape(title.replace("&amp;", '&'))
+      title = title.replace("&#39;", "'")
    return title