]> git.phdru.name Git - bookmarks_db.git/blobdiff - set-title-list.py
Feat(Python3): `<>` -> `!=`
[bookmarks_db.git] / set-title-list.py
index bd0da40c897660bb918c7e27bc670a3eeb5d835f..74acae49f3af128eb2c8ed5b0852c284df468a57 100755 (executable)
@@ -30,7 +30,7 @@ def run():
    if report_stats:
       print("Broytman set-title-list, Copyright (C) 2003-2017 PhiloSoft Design")
 
-   if len(args) <> 1:
+   if len(args) != 1:
       sys.stderr.write("Usage: set-title-list [-s] title_list_file\n")
       sys.exit(1)
 
@@ -54,8 +54,8 @@ def run():
 
       else: # We've got 3 lines - add new entry to the mapping
          if titles_dict.has_key(URL):
-            if title <> titles_dict[URL]:
-               raise ValueError("titles are not identical for URL `%s': `%s' <> `%s'" % (URL, title, titles_dict[URL]))
+            if title != titles_dict[URL]:
+               raise ValueError("titles are not identical for URL `%s': `%s' != `%s'" % (URL, title, titles_dict[URL]))
 
          else:
             titles_dict[URL] = title
@@ -92,7 +92,7 @@ def run():
          URL = object.href
          if titles_dict.has_key(URL):
             name = titles_dict[URL]
-            if object.name <> name:
+            if object.name != name:
                object.name = name
                changed += 1