X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=check_title.py;h=5c0ed3f0ed4b7f9ae3982145803e284614871c9c;hb=5e3685956769a46ded587d33d5cb69ca4d0bbe7a;hp=ffab6fa7d325b69cd787b15e5f28fde7681bcaeb;hpb=c88cb7a75e7caf1d67466cfa107981d95115fa0c;p=bookmarks_db.git diff --git a/check_title.py b/check_title.py index ffab6fa..5c0ed3f 100755 --- a/check_title.py +++ b/check_title.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 """Check and show URLs in the bookmarks database where name != real title This file is a part of Bookmarks database and Internet robot. @@ -10,7 +10,7 @@ from bkmk_objects import make_linear, quote_title, unquote_title __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2002-2017 PhiloSoft Design" +__copyright__ = "Copyright (C) 2002-2023 PhiloSoft Design" __license__ = "GNU GPL" @@ -29,7 +29,7 @@ def run(): pass if report_stats: - print("Broytman check_title, Copyright (C) 2002-2017 PhiloSoft Design") + print("Broytman check_title, Copyright (C) 2002-2023 PhiloSoft Design") if args: sys.stderr.write("check_title: too many arguments\n") @@ -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")