X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=blobdiff_plain;f=set-title-list.py;h=eb327d62b41b164b4fdfd57219e2dd8e668d976c;hp=2fb37eccb838b43fdde557435528719252615680;hb=c1c90856aeffcf8f2bcb7abf39934d5e0f8be36d;hpb=abee12cd1f9876c8a4e0d6dfbb854bbb118d01b8 diff --git a/set-title-list.py b/set-title-list.py index 2fb37ec..eb327d6 100755 --- a/set-title-list.py +++ b/set-title-list.py @@ -4,12 +4,14 @@ This file is a part of Bookmarks database and Internet robot. """ +from __future__ import print_function +import sys + + __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2003-2012 PhiloSoft Design" +__copyright__ = "Copyright (C) 2003-2017 PhiloSoft Design" __license__ = "GNU GPL" -import sys - def run(): from getopt import getopt @@ -26,7 +28,7 @@ def run(): pass if report_stats: - print "Broytman set-title-list, Copyright (C) 2003-2007 PhiloSoft Design" + print("Broytman set-title-list, Copyright (C) 2003-2017 PhiloSoft Design") if len(args) <> 1: sys.stderr.write("Usage: set-title-list [-s] title_list_file\n") @@ -78,7 +80,7 @@ def run(): objects = len(root_folder.linear) if report_stats: - print "Ok" + print("Ok") # Run through the list of objects and check URLs/titles @@ -108,9 +110,9 @@ def run(): storage.store(root_folder) if changed and report_stats: - print "Ok" - print objects, "objects passed" - print changed, "objects changed" + print("Ok") + print(objects, "objects passed") + print(changed, "objects changed") if __name__ == '__main__':