X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=check_title.py;h=e8215e8e7815c9a74111d3bbc459d1440b7b72ca;hb=ba13205bb60a7f770bae98aeadcc6afe3dc705ea;hp=c93964f986cd473a9c4d23c8b42b1b49d15db846;hpb=c1c90856aeffcf8f2bcb7abf39934d5e0f8be36d;p=bookmarks_db.git diff --git a/check_title.py b/check_title.py index c93964f..e8215e8 100755 --- a/check_title.py +++ b/check_title.py @@ -62,7 +62,7 @@ def run(): 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: + if unquoted_name != unquoted_title: print(object.href) print(unquoted_name) print(unquoted_title)