From e2eeab4dd30d57ac17465be57a6743f34d914584 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Fri, 10 Oct 2014 15:20:28 -0700 Subject: [PATCH] Update verification message Signed-off-by: Derek McGowan (github: dmcgowan) Upstream-commit: 85fd8213afe9497da5df5583d776659ed187c9e9 Component: engine --- components/engine/graph/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/graph/pull.go b/components/engine/graph/pull.go index 39e8926c8a..327716a2f2 100644 --- a/components/engine/graph/pull.go +++ b/components/engine/graph/pull.go @@ -463,7 +463,7 @@ func (s *TagStore) pullV2Tag(eng *engine.Engine, r *registry.Session, out io.Wri } if verified { - out.Write(sf.FormatStatus(localName+":"+tag, "The image you are pulling has been digitally signed by Docker, Inc.")) + out.Write(sf.FormatStatus(localName+":"+tag, "The image you are pulling has been verified")) } else { out.Write(sf.FormatStatus(tag, "Pulling from %s", localName)) }