From: Oleg Broytman Date: Sat, 14 Aug 2010 22:32:35 +0000 (+0000) Subject: Write icon's URIs. X-Git-Tag: v4.5.3~90 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=61f4f37267b4f5d200abc5e8cc278d8e946cff26 Write icon's URIs. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@286 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- diff --git a/Writers/bkmk_wflad.py b/Writers/bkmk_wflad.py index c324194..0a94fd8 100644 --- a/Writers/bkmk_wflad.py +++ b/Writers/bkmk_wflad.py @@ -1,7 +1,7 @@ """ - Dump bookmarks db to a more readable FLAD after check_urls + Dump bookmarks db to a more readable FLat Ascii Database - Written by Broytman. Copyright (C) 2000-2007 PhiloSoft Design. + Written by Broytman. Copyright (C) 2000-2010 PhiloSoft Design. """ @@ -48,7 +48,7 @@ Comment: %s""" % (level+1, b.name, b.href, strftime(b.add_date), strftime(b.last for attr_name, attr_out in (("error", "Error"), ("no_error", "NoError"), ("moved", "Moved"), ("size", "Size"), ("md5", "Md5"), ("real_title", "RealTitle"), ("test_time", "TestTime"), - ("icon", "Icon"), ("charset", "Charset")): + ("icon_href", "IconURI"), ("icon", "Icon"), ("charset", "Charset")): if hasattr(b, attr_name): self.outfile.write("\n%s: %s" % (attr_out, getattr(b, attr_name)))