Fix debug message formatting.

This commit is contained in:
Bastian Kleineidam 2010-11-01 05:59:04 +01:00
parent cb41f8e6a2
commit c5f93a561d

View file

@ -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,