Split on newline before returning

master
Elis Hirwing 2017-11-04 12:10:31 +01:00
parent e51097ba3a
commit 7b274c7e3a
Signed by: etu
GPG Key ID: D57EFA625C9A925F
1 changed files with 3 additions and 2 deletions

View File

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