]> git.phdru.name Git - bookmarks_db.git/blobdiff - set-title-list.py
Fix(Py3): Fix `list.join(separator)`
[bookmarks_db.git] / set-title-list.py
index 8249c5789d3e642627c433ad609a5ee4b235f191..4644a81a7786eef016dc5ebf1364d10d727a8bb5 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 """Run through the bookmarks database and set names to titles
 from an external file
 
@@ -58,7 +58,7 @@ def run():
             )
 
         else:  # We've got 3 lines - add new entry to the mapping
-            if titles_dict.has_key(URL):
+            if URL in titles_dict:
                 if title != titles_dict[URL]:
                     raise ValueError(
                         "titles are not identical for URL `%s': `%s' != `%s'"
@@ -96,7 +96,7 @@ def run():
 
         if object.isBookmark:
             URL = object.href
-            if titles_dict.has_key(URL):
+            if URL in titles_dict:
                 name = titles_dict[URL]
                 if object.name != name:
                     object.name = name