X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-real_title.py;h=00292217f52cb0de125aa2ec822992c2ea297cc9;hb=a04eaa0346e8aa5ad86a195f8f4d36487ebfe09c;hp=62ded1c21b93cbf50ac33c79c2abe476cc728d7c;hpb=71712390f4edb041609ff7bc9272d12a5c1a9b1d;p=bookmarks_db.git diff --git a/set-real_title.py b/set-real_title.py index 62ded1c..0029221 100755 --- a/set-real_title.py +++ b/set-real_title.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) 2002-2012 PhiloSoft Design" +__copyright__ = "Copyright (C) 2002-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-real_title, Copyright (C) 2003 PhiloSoft Design" + print("Broytman set-real_title, Copyright (C) 2003-2017 PhiloSoft Design") if args: sys.stderr.write("set-real_title: too many arguments\n") @@ -46,7 +48,7 @@ def run(): objects = len(root_folder.linear) if report_stats: - print "Ok" + print("Ok") changed = 0 @@ -60,7 +62,7 @@ def run(): real_title = object.real_title if not real_title: real_title = object.href - if object.name <> real_title: + if object.name != real_title: object.name = real_title changed += 1 @@ -77,9 +79,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__':