]> git.phdru.name Git - bookmarks_db.git/blobdiff - check_urls.py
Style: Fix flake8 E128 continuation line under-indented for visual indent
[bookmarks_db.git] / check_urls.py
index a7314f3b789ee120cfb9d239fd05d1e14d3268a5..000141ff0f65929fb525879e9c2f6ffcff46745d 100755 (executable)
@@ -9,7 +9,7 @@ import sys, os
 
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2000-2023 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 
@@ -34,7 +34,7 @@ def run():
         pass
 
     if report_stats:
-        print("Broytman check_urls, Copyright (C) 1997-2017 PhiloSoft Design")
+        print("Broytman check_urls, Copyright (C) 1997-2023 PhiloSoft Design")
 
     if args:
         sys.stderr.write("check_urls: too many arguments\n")
@@ -108,7 +108,7 @@ def run():
         if object.isBookmark:
             href = object.href
             if (href.startswith('place:') # Firefox SmartBookmarks
-                  or '%s' in href): # Bookmark with keyword
+                    or '%s' in href): # Bookmark with keyword
                 log("Skipped %s" % href)
                 continue
 
@@ -121,9 +121,11 @@ def run():
             if checked.has_key(href):
                 log("Already checked %s" % href)
                 old_object = root_folder.linear[checked[href]]
-                for attr_name in ("last_visit", "last_modified",
-                      "error", "no_error", "moved", "size", "md5", "real_title",
-                      "last_tested", "test_time", "icon", "charset"):
+                for attr_name in (
+                    "last_visit", "last_modified",
+                    "error", "no_error", "moved", "size", "md5", "real_title",
+                    "last_tested", "test_time", "icon", "charset",
+                ):
                     if hasattr(old_object, attr_name):
                         setattr(object, attr_name, getattr(old_object, attr_name))
             else: