X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=check_urls.py;h=305458028b38fb51caee8b747bf60041943584a3;hb=a01b9869e595d0c1cc5ebeb6f5a1da66d45c3d22;hp=c3e81b876cd7c811d7a807101fe3d51aa85d0f15;hpb=2b55be0b7b45c1b841c57856911f708e3962491b;p=bookmarks_db.git diff --git a/check_urls.py b/check_urls.py index c3e81b8..3054580 100755 --- a/check_urls.py +++ b/check_urls.py @@ -1,13 +1,17 @@ #! /usr/bin/env python -""" - Robot interface - check URLs from bookmarks database +"""Robot interface - check URLs from bookmarks database - Written by Broytman. Copyright (C) 2000-2010 PhiloSoft Design. +This file is a part of Bookmarks database and Internet robot. """ +__version__ = "$Revision$"[11:-2] +__revision__ = "$Id$"[5:-2] +__date__ = "$Date$"[7:-2] +__author__ = "Oleg Broytman " +__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design" +__license__ = "GNU GPL" import sys, os -tempfname = "check_urls.tmp" def run(): @@ -63,7 +67,7 @@ def run(): storage = storage() from robots import robot - robot = robot(tempfname, log) + robot = robot(log) if report_stats: sys.stdout.write("Loading %s: " % storage.filename) @@ -153,11 +157,6 @@ def run(): log("check_urls finished ok") log.close() - try: - os.unlink(tempfname) - except os.error: - pass - if __name__ == '__main__': run()