mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 13:51:01 +00:00
Fix debug message formatting.
This commit is contained in:
parent
cb41f8e6a2
commit
c5f93a561d
1 changed files with 1 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ class HttpUrl (internpaturl.InternPatternUrl, proxysupport.ProxySupport):
|
|||
authenticate = self.headers.get('WWW-Authenticate')
|
||||
if not authenticate or not authenticate.startswith("Basic"):
|
||||
# LinkChecker only supports Basic authorization
|
||||
args = {"auth": authenticate},
|
||||
args = {"auth": authenticate}
|
||||
self.add_warning(
|
||||
_("Unsupported HTTP authentication `%(auth)s', " \
|
||||
"only `Basic' authentication is supported.") % args,
|
||||
|
|
|
|||
Loading…
Reference in a new issue