From f0afd41d94596f362c8b77a8717af0592f48460e Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Mon, 17 Aug 2015 08:11:00 -0500 Subject: [PATCH] terminal/command: Fix 'goroutine' command output --- terminal/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal/command.go b/terminal/command.go index 5bd0d5f7..f079c1f3 100644 --- a/terminal/command.go +++ b/terminal/command.go @@ -212,7 +212,7 @@ func formatGoroutine(g *api.Goroutine) string { if g.Function != nil { fname = g.Function.Name } - return fmt.Sprintf("%d - %s:%d %s (%#v)\n", g.ID, g.File, g.Line, fname, g.PC) + return fmt.Sprintf("%d - %s:%d %s (%#v)", g.ID, g.File, g.Line, fname, g.PC) } func restart(client service.Client, args ...string) error {