Split on newline before returning
parent
e51097ba3a
commit
7b274c7e3a
|
@ -9,6 +9,7 @@ import (
|
|||
"io/ioutil"
|
||||
"log"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
@ -42,7 +43,7 @@ type SLResponse struct {
|
|||
}
|
||||
|
||||
// GetOutput returns a rendered result of this module
|
||||
func (sl *SL) GetOutput() string {
|
||||
func (sl *SL) GetOutput() []string {
|
||||
var b bytes.Buffer
|
||||
|
||||
// Prepare table
|
||||
|
@ -85,7 +86,7 @@ func (sl *SL) GetOutput() string {
|
|||
|
||||
table.Render()
|
||||
|
||||
return b.String()
|
||||
return strings.Split(b.String(), "\n")
|
||||
}
|
||||
|
||||
func (sl *SL) getTimeTable() (SLResponse, error) {
|
||||
|
|
Loading…
Reference in New Issue