From a31808d07e0683251d265241bfac9095c05cb889 Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Fri, 6 Nov 2015 18:18:06 -0800 Subject: [PATCH] Remove newline Infof adds it automatically. Signed-off-by: Nathan LeClaire --- libmachine/mcnutils/b2d.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmachine/mcnutils/b2d.go b/libmachine/mcnutils/b2d.go index 031ebe8a83..6e9d8e28f5 100644 --- a/libmachine/mcnutils/b2d.go +++ b/libmachine/mcnutils/b2d.go @@ -112,7 +112,7 @@ func (b *B2dUtils) GetLatestBoot2DockerReleaseURL(apiURL string) (string, error) } tag := t[0].TagName - log.Infof("Latest release for %s/%s/%s is %s\n", host, org, repo, tag) + log.Infof("Latest release for %s/%s/%s is %s", host, org, repo, tag) isoURL = fmt.Sprintf("%s://%s/%s/%s/releases/download/%s/boot2docker.iso", scheme, host, org, repo, tag) } else { //does not match a github releases api url