rename noanchorcaching to anchorcaching

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1087 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-12-05 00:38:30 +00:00
parent 519c000cd5
commit f39d0ef56e
2 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ class Configuration (dict):
self["verbose"] = False
self["warnings"] = False
self["anchors"] = False
self["noanchorcaching"] = False
self["anchorcaching"] = True
self["externlinks"] = []
self["internlinks"] = []
self["denyallow"] = False
@ -499,7 +499,7 @@ class Configuration (dict):
self["interactive"] = cfgparser.getboolean(section, "interactive")
except ConfigParser.Error, msg: debug(NIGHTMARE, msg)
try:
self["noanchorcaching"] = cfgparser.getboolean(section, "noanchorcaching")
self["anchorcaching"] = cfgparser.getboolean(section, "anchorcaching")
except ConfigParser.Error, msg: debug(NIGHTMARE, msg)
section = "authentication"

View file

@ -318,7 +318,7 @@ for opt,arg in options:
config["nntpserver"] = arg
elif opt=="--no-anchor-caching":
config["noanchorcaching"] = True
config["anchorcaching"] = False
elif opt=="-p" or opt=="--password":
_password = arg