]> git.phdru.name Git - bookmarks_db.git/blobdiff - Storage/bkmk_stflad.py
Fix(flad): Unindent code erroneously indented in commit c88cb7a7
[bookmarks_db.git] / Storage / bkmk_stflad.py
index 63ee0400b5b55f9d47339abef630859ecbbc9853..a60b30af872b215e62f7e80d151cdd672589ff66 100644 (file)
@@ -34,27 +34,27 @@ class storage_flad(Walker):
 
     def start_folder(self, f, level):
         self.outfile.write("""
-  Level: %d
-  Folder: %s
-  AddDate: %s
-  Comment: %s
-  LastModified: %s
-  """ % (level, f.name, f.add_date, f.comment, f.last_modified or ''))
+Level: %d
+Folder: %s
+AddDate: %s
+Comment: %s
+LastModified: %s
+""" % (level, f.name, f.add_date, f.comment, f.last_modified or ''))
 
     def bookmark(self, b, level):
         self.outfile.write("""
-  Level: %d
-  Title: %s
-  URL: %s
-  AddDate: %s
-  LastVisit: %s
-  LastModified: %s
-  Keyword: %s
-  Comment: %s
-  IconURI: %s
-  Icon: %s
-  Charset: %s
-  """ % (level+1, b.name, b.href, b.add_date, b.last_visit, b.last_modified,
+Level: %d
+Title: %s
+URL: %s
+AddDate: %s
+LastVisit: %s
+LastModified: %s
+Keyword: %s
+Comment: %s
+IconURI: %s
+Icon: %s
+Charset: %s
+""" % (level+1, b.name, b.href, b.add_date, b.last_visit, b.last_modified,
            b.keyword, b.comment.replace('\n', "\\n"),
            b.icon_href or '', b.icon or '', b.charset or ''))