]> git.phdru.name Git - bookmarks_db.git/blobdiff - set-title-list.py
Feat(Python3): `raise Error, value` -> `raise Error(value)`
[bookmarks_db.git] / set-title-list.py
index eb327d62b41b164b4fdfd57219e2dd8e668d976c..bd0da40c897660bb918c7e27bc670a3eeb5d835f 100755 (executable)
@@ -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