mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-22 23:24:44 +00:00
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:
parent
519c000cd5
commit
f39d0ef56e
2 changed files with 3 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue