X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=check_title.py;h=554c2af2e3ce5179423fbd6ff1349f7cb92ef96e;hb=c58611ea4c70dc27b550ad4e0267b1a89edda7e0;hp=775679b227ada7d4bdfe0d7e32ab700e91f63630;hpb=c2ea4e82718b903aa123dd77490f36657383b0ca;p=bookmarks_db.git diff --git a/check_title.py b/check_title.py index 775679b..554c2af 100755 --- a/check_title.py +++ b/check_title.py @@ -50,16 +50,16 @@ def run(): if report_stats: print("Ok") - for object_no in range(objects): object = root_folder.linear[object_no] if object.isBookmark: - if hasattr(object, "moved") or hasattr(object, "error") \ - or object.href.startswith('place:'): # Firefox SmartBookmarks + if hasattr(object, "moved") or hasattr(object, "error") or \ + object.href.startswith('place:'): # Firefox SmartBookmarks continue - if hasattr(object, "real_title") and (object.real_title is not None): + if hasattr(object, "real_title") \ + and (object.real_title is not None): unquoted_title = unquote_title(quote_title(object.real_title)) unquoted_name = unquote_title(object.name) if unquoted_name != unquoted_title: @@ -73,7 +73,6 @@ def run(): print("NO REAL TITLE!!!") print() - if report_stats: print(objects, "objects passed")