]> git.phdru.name Git - bookmarks_db.git/blobdiff - set-title-list.py
Feat(Python3): Fix old style repr
[bookmarks_db.git] / set-title-list.py
index eb327d62b41b164b4fdfd57219e2dd8e668d976c..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)
 
@@ -50,12 +50,12 @@ def run():
          title = line
 
       elif line: # the third line in every 3 lines must be empty
-         raise ValueError, "line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line)
+         raise ValueError("line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line))
 
       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