]> git.phdru.name Git - bookmarks_db.git/blobdiff - Writers/bkmk_wflad.py
Fix(flad): Unindent code erroneously indented in commit c88cb7a7
[bookmarks_db.git] / Writers / bkmk_wflad.py
index 11cd1436b398a18fbf77d664a59c30d51b01de87..06c523b33034680c97b800c873443ebc7df04e4d 100644 (file)
@@ -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"),