]> git.phdru.name Git - bookmarks_db.git/blobdiff - check_urls.py
Fix(parse_html): Fix import
[bookmarks_db.git] / check_urls.py
index 000141ff0f65929fb525879e9c2f6ffcff46745d..e60cefe9edf394ac7f213f19cd05c10b18137da9 100755 (executable)
@@ -5,7 +5,7 @@ This file is a part of Bookmarks database and Internet robot.
 """
 
 from __future__ import print_function
-import sys, os
+import sys
 
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
@@ -107,8 +107,8 @@ def run():
 
         if object.isBookmark:
             href = object.href
-            if (href.startswith('place:') # Firefox SmartBookmarks
-                    or '%s' in href): # Bookmark with keyword
+            if (href.startswith('place:')  # Firefox SmartBookmarks
+                    or '%s' in href):  # Bookmark with keyword
                 log("Skipped %s" % href)
                 continue
 
@@ -127,7 +127,8 @@ def run():
                     "last_tested", "test_time", "icon", "charset",
                 ):
                     if hasattr(old_object, attr_name):
-                        setattr(object, attr_name, getattr(old_object, attr_name))
+                        setattr(object, attr_name,
+                                getattr(old_object, attr_name))
             else:
                 log("Checking %s" % href)
                 rcode = robot.check_url(object)
@@ -138,7 +139,7 @@ def run():
                     try:
                         size = size + int(object.size)
                     except (AttributeError, TypeError, ValueError):
-                        pass # Some object does not have a size :(
+                        pass  # Some object does not have a size :(
                 else:
                     log("Interrupted by user (^C)")
                     break