X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=check_urls.py;h=629fa86af2d01353af3f08b07463ff793eb937d1;hb=05f0cc396bc24da45fa1a8b0a79c97c79f399465;hp=bf8df1a28c5d05da8ba21a79bd67806a78790082;hpb=b2b302b348f0b711557961c70744c818cff664f0;p=bookmarks_db.git diff --git a/check_urls.py b/check_urls.py index bf8df1a..629fa86 100755 --- a/check_urls.py +++ b/check_urls.py @@ -1,11 +1,10 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 """Robot interface - check URLs from bookmarks database This file is a part of Bookmarks database and Internet robot. """ from __future__ import print_function -import os import sys @@ -128,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)