X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-title-list.py;h=74acae49f3af128eb2c8ed5b0852c284df468a57;hb=a04eaa0346e8aa5ad86a195f8f4d36487ebfe09c;hp=eb327d62b41b164b4fdfd57219e2dd8e668d976c;hpb=c1c90856aeffcf8f2bcb7abf39934d5e0f8be36d;p=bookmarks_db.git diff --git a/set-title-list.py b/set-title-list.py index eb327d6..74acae4 100755 --- a/set-title-list.py +++ b/set-title-list.py @@ -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