X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=blobdiff_plain;f=Writers%2Fbkmk_wflad.py;h=06c523b33034680c97b800c873443ebc7df04e4d;hp=11cd1436b398a18fbf77d664a59c30d51b01de87;hb=ff958ee854d80253b271de04945a57fafc0363c4;hpb=d594d5acd1c256017e0343ba7910a127a319e2bd diff --git a/Writers/bkmk_wflad.py b/Writers/bkmk_wflad.py index 11cd143..06c523b 100644 --- a/Writers/bkmk_wflad.py +++ b/Writers/bkmk_wflad.py @@ -30,23 +30,23 @@ class writer_flad(Writer): def start_folder(self, f, level): self.outfile.write(""" - Level: %d - Folder: %s - AddDate: %s - Comment: %s - LastModified: %s - """ % (level, f.name, strftime(f.add_date), f.comment, strftime(f.last_modified))) +Level: %d +Folder: %s +AddDate: %s +Comment: %s +LastModified: %s +""" % (level, f.name, strftime(f.add_date), f.comment, strftime(f.last_modified))) def bookmark(self, b, level): self.outfile.write(""" - Level: %d - Title: %s - URL: %s - AddDate: %s - LastVisit: %s - LastModified: %s - Keyword: %s - Comment: %s""" % (level+1, b.name, b.href, strftime(b.add_date), strftime(b.last_visit), strftime(b.last_modified), b.keyword, b.comment)) +Level: %d +Title: %s +URL: %s +AddDate: %s +LastVisit: %s +LastModified: %s +Keyword: %s +Comment: %s""" % (level+1, b.name, b.href, strftime(b.add_date), strftime(b.last_visit), strftime(b.last_modified), b.keyword, b.comment)) for attr_name, attr_out in (("error", "Error"), ("no_error", "NoError"), ("moved", "Moved"), ("size", "Size"), ("md5", "Md5"),