terminal/command: Fix 'goroutine' command output

This commit is contained in:
Derek Parker 2015-08-17 08:11:00 -05:00
parent 066160f93e
commit f0afd41d94

@ -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 {