X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=blobdiff_plain;f=set-title-list.py;h=74acae49f3af128eb2c8ed5b0852c284df468a57;hp=bd0da40c897660bb918c7e27bc670a3eeb5d835f;hb=b65d59b866ec851da9871afe9707f6b1e38866be;hpb=97202bf84e9c78d8fac912a82a85fb1cbb233a4b diff --git a/set-title-list.py b/set-title-list.py index bd0da40..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) @@ -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