Commit 6c523681 authored by Matt Holt's avatar Matt Holt

tls: Fix format string

parent c78eb50e
......@@ -59,7 +59,7 @@ func TLS(c *Controller) (middleware.Middleware, error) {
return nil, c.ArgErr()
}
default:
return nil, c.Errf("Unknown keyword '%s'")
return nil, c.Errf("Unknown keyword '%s'", c.Val())
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment