X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=check_title.py;h=5c0ed3f0ed4b7f9ae3982145803e284614871c9c;hb=d25e2f5a01237f50f0273f6b8b3cee7d465c1be8;hp=870d968f785e8dc55429e269c4ee5b6108035741;hpb=d7a67c44edee1994505e3bf501e6af63ffd1ef36;p=bookmarks_db.git diff --git a/check_title.py b/check_title.py index 870d968..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. @@ -54,11 +54,12 @@ def run(): 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: