]> git.phdru.name Git - bookmarks_db.git/blobdiff - check_title.py
Feat: Improve stats
[bookmarks_db.git] / check_title.py
index 391f5a147ec5882fbb3541604f9b741a3670377b..0bb10602281defb9bd127ae91f9fdf8d8ab019a0 100755 (executable)
@@ -68,6 +68,7 @@ def run():
     if report_stats:
         print("Ok")
 
+    changed_titles = no_titles = 0
     for object_no in range(objects):
         object = root_folder.linear[object_no]
 
@@ -82,11 +83,15 @@ def run():
                 unquoted_name = unquote_title(object.name)
                 if unquoted_name != unquoted_title:
                     report_title(object.href, unquoted_name, unquoted_title)
+                    changed_titles += 1
             else:
                 report_title(object.href, object.name, None)
+                no_titles += 1
 
     if report_stats:
         print(objects, "objects passed")
+        print(changed_titles, "changed titles")
+        print(no_titles, "no titles")
 
 
 if __name__ == '__main__':