X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-title-list.py;h=bd0da40c897660bb918c7e27bc670a3eeb5d835f;hb=71900f3630cb51580964038b78100d60e3671981;hp=bd540591c51ded3e01b79b3929c402e1d9898b6e;hpb=832eb757ef7f81abf1e431ce16f368c10dd57962;p=bookmarks_db.git diff --git a/set-title-list.py b/set-title-list.py index bd54059..bd0da40 100755 --- a/set-title-list.py +++ b/set-title-list.py @@ -4,15 +4,14 @@ This file is a part of Bookmarks database and Internet robot. """ -__version__ = "$Revision$"[11:-2] -__revision__ = "$Id$"[5:-2] -__date__ = "$Date$"[7:-2] +from __future__ import print_function +import sys + + __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2003-2011 PhiloSoft Design" +__copyright__ = "Copyright (C) 2003-2017 PhiloSoft Design" __license__ = "GNU GPL" -import sys - def run(): from getopt import getopt @@ -29,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") @@ -51,12 +50,12 @@ def run(): title = line elif line: # the third line in every 3 lines must be empty - raise ValueError, "line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line) + raise ValueError("line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line)) else: # We've got 3 lines - add new entry to the mapping if titles_dict.has_key(URL): if title <> titles_dict[URL]: - raise ValueError, "titles are not identical for URL `%s': `%s' <> `%s'" % (URL, title, titles_dict[URL]) + raise ValueError("titles are not identical for URL `%s': `%s' <> `%s'" % (URL, title, titles_dict[URL])) else: titles_dict[URL] = title @@ -81,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 @@ -111,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__':