Merge pull request #1166 from treed/master

De-obfuscate error message
master
Stephen Day 2015-11-11 17:18:25 -08:00
commit c0d094a72a
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ func (ch challenge) SetHeaders(w http.ResponseWriter) {
}
func (ch challenge) Error() string {
return fmt.Sprintf("basic authentication challenge: %#v", ch)
return fmt.Sprintf("basic authentication challenge for realm %q: %s", ch.realm, ch.err)
}
func init() {