X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=121f908b2971d2568dc49b9d2533a47c96125fd0;hb=ee556aa2ed24d28ad25cbbe31f9141e4e8fdc932;hp=e7d1d623b87d2c39d226b6968364bab176f62900;hpb=0e76f1851882b99da63a7c8a9e4cdf0c4a48657f;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index e7d1d62..121f908 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,7 +1,7 @@ """ Objects to represent bookmarks.html structure - Written by Oleg Broytman. Copyright (C) 2000-2007 PhiloSoft Design. + Written by Oleg Broytman. Copyright (C) 2000-2010 PhiloSoft Design. """ import os, cgi @@ -179,4 +179,5 @@ def unquote_title(title): if BKMK_FORMAT == "MOZILLA": from HTMLParser import HTMLParser title = HTMLParser().unescape(title.replace("&", '&')) + title = title.replace("'", "'") return title