service/debugger: Remove newline at end of error

This commit is contained in:
Derek Parker 2015-08-13 18:17:06 -05:00
parent 12bd0472d2
commit e68e760a9f

@ -280,7 +280,7 @@ func (loc *NormalLocationSpec) Find(d *Debugger, locStr string) ([]api.Location,
case 0:
return nil, fmt.Errorf("Location \"%s\" not found", locStr)
default:
return nil, fmt.Errorf("Location \"%s\" ambiguous: %s…\n", locStr, strings.Join(candidates, ", "))
return nil, fmt.Errorf("Location \"%s\" ambiguous: %s…", locStr, strings.Join(candidates, ", "))
}
}