X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=blobdiff_plain;f=set-title-list.py;h=bd0da40c897660bb918c7e27bc670a3eeb5d835f;hp=eb327d62b41b164b4fdfd57219e2dd8e668d976c;hb=71900f3630cb51580964038b78100d60e3671981;hpb=3e7f48c2fc9e132806609f7811c62bf2a43ddf7c diff --git a/set-title-list.py b/set-title-list.py index eb327d6..bd0da40 100755 --- a/set-title-list.py +++ b/set-title-list.py @@ -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]) + raise ValueError("titles are not identical for URL `%s': `%s' <> `%s'" % (URL, title, titles_dict[URL])) else: titles_dict[URL] = title