]> git.phdru.name Git - bookmarks_db.git/blobdiff - check_title.py
Feat(Python3): `<>` -> `!=`
[bookmarks_db.git] / check_title.py
index c93964f986cd473a9c4d23c8b42b1b49d15db846..e8215e8e7815c9a74111d3bbc459d1440b7b72ca 100755 (executable)
@@ -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)