From 594242e86c4b93676bb564657d6c93b0f5920d22 Mon Sep 17 00:00:00 2001 From: calvin Date: Sat, 28 Aug 2004 07:58:04 +0000 Subject: [PATCH] deprectate --status, remove --robots-txt git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1566 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkchecker | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/linkchecker b/linkchecker index b9f0ef7a..362d4945 100755 --- a/linkchecker +++ b/linkchecker @@ -249,7 +249,7 @@ are %(loggertypes)s. You can specify this option multiple times to output to more than one file. Default is no file output.""") % \ {'loggertypes': linkcheck.LoggerKeys}) group.add_option("--no-status", action="store_false", dest="status", - help=_( + default=True, help=_( """Do not print check status every 5 seconds to stderr. When --debug is given, the status check will only be printed after each checked url. This is due to disabled threading during a debug run.""")) @@ -337,10 +337,12 @@ environment variable NNTP_SERVER. If no host is given, only the syntax of the link is checked.""")) optparser.add_option_group(group) - ################# deprecated options ################## -group = optparse.OptionGroup(optparser, _("Deprecated options")) -group.add_option("-R", "--robots-txt", action="store_true") +group.add_option("--status", action="store_true", dest="status", + help=_( +"""Print check status every 5 seconds to stderr. When --debug is +given, the status check will only be printed after each checked url. +This is due to disabled threading during a debug run.""")) optparser.add_option_group(group) ################# auto completion #####################