summaryrefslogtreecommitdiff
path: root/daemon/attach.go
diff options
context:
space:
mode:
authorlixiaobing10051267 <li.xiaobing1@zte.com.cn>2017-02-21 17:41:45 +0800
committerlixiaobing10051267 <li.xiaobing1@zte.com.cn>2017-02-22 09:48:18 +0800
commit660ec32e8fbaf62c6ae9254377495a0674d858d6 (patch)
tree5a7937ad8579691fa6ea4e840401df7332b2a027 /daemon/attach.go
parentaef8aa565f471eeed64eb6f25e15b3ac634048a3 (diff)
downloaddocker-660ec32e8fbaf62c6ae9254377495a0674d858d6.tar.gz
invalide detach keys provided
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
Diffstat (limited to 'daemon/attach.go')
-rw-r--r--daemon/attach.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/attach.go b/daemon/attach.go
index 1cc8adb17b..e262ed2912 100644
--- a/daemon/attach.go
+++ b/daemon/attach.go
@@ -22,7 +22,7 @@ func (daemon *Daemon) ContainerAttach(prefixOrName string, c *backend.ContainerA
if c.DetachKeys != "" {
keys, err = term.ToBytes(c.DetachKeys)
if err != nil {
- return fmt.Errorf("Invalid escape keys (%s) provided", c.DetachKeys)
+ return fmt.Errorf("Invalid detach keys (%s) provided", c.DetachKeys)
}
}