X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=check_urls.py;h=d6d038d2c624a116c22b60f772260095661909a1;hb=b65d59b866ec851da9871afe9707f6b1e38866be;hp=e2dac0ff3c516a65ed9f23b22d37ce050bbe6030;hpb=71712390f4edb041609ff7bc9272d12a5c1a9b1d;p=bookmarks_db.git diff --git a/check_urls.py b/check_urls.py index e2dac0f..d6d038d 100755 --- a/check_urls.py +++ b/check_urls.py @@ -4,12 +4,14 @@ This file is a part of Bookmarks database and Internet robot. """ +from __future__ import print_function +import sys, os + + __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design" +__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design" __license__ = "GNU GPL" -import sys, os - def run(): from getopt import getopt @@ -32,7 +34,7 @@ def run(): pass if report_stats: - print "Broytman check_urls, Copyright (C) 1997-2010 PhiloSoft Design" + print("Broytman check_urls, Copyright (C) 1997-2017 PhiloSoft Design") if args: sys.stderr.write("check_urls: too many arguments\n") @@ -53,12 +55,12 @@ def run(): log = openlog("check.log") log("chk_urls restarted for errors") if report_stats: - print "chk_urls restarted for errors" + print("chk_urls restarted for errors") else: log = makelog("check.log") log("check_urls started") if report_stats: - print " check_urls: normal start" + print(" check_urls: normal start") from storage import storage storage = storage() @@ -76,7 +78,7 @@ def run(): objects = len(root_folder.linear) if report_stats: - print "Ok" + print("Ok") if report_stats: if only_errors: @@ -144,10 +146,10 @@ def run(): del pbar if report_stats: - print "Ok" - print object_count, "objects passed" - print urls_no, "URLs checked" - print size, "bytes eaten" + print("Ok") + print(object_count, "objects passed") + print(urls_no, "URLs checked") + print(size, "bytes eaten") break_tree(root_folder.linear) storage.store(root_folder)