X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-real_title.py;h=fab938f6ae6309a674cb10df7dfe2e7c11bb7368;hb=71900f3630cb51580964038b78100d60e3671981;hp=1115f31f14e90cdfb8d74d9c367a130df9a5c686;hpb=fb5c3b2b91aeeb615d6d6d890491af3fdff69556;p=bookmarks_db.git diff --git a/set-real_title.py b/set-real_title.py index 1115f31..fab938f 100755 --- a/set-real_title.py +++ b/set-real_title.py @@ -1,14 +1,18 @@ -#! /usr/local/bin/python -O -""" - Run through the bookmarks database and set name to real title +#! /usr/bin/env python +"""Run through the bookmarks database and set name to real title - Written by BroytMann, Jul 2002 - Aug 2002. Copyright (C) 2002-2002 PhiloSoft Design +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-2017 PhiloSoft Design" +__license__ = "GNU GPL" + + def run(): from getopt import getopt optlist, args = getopt(sys.argv[1:], "s") @@ -24,7 +28,7 @@ def run(): pass if report_stats: - print "BroytMann check_title, Copyright (C) 2002 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") @@ -44,7 +48,7 @@ def run(): objects = len(root_folder.linear) if report_stats: - print "Ok" + print("Ok") changed = 0 @@ -75,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__':