Print Deviations after the table

master
Elis Hirwing 2017-12-23 11:34:14 +01:00
parent 823e303636
commit 756919d533
Signed by: etu
GPG Key ID: D57EFA625C9A925F
1 changed files with 5 additions and 0 deletions

View File

@ -78,6 +78,11 @@ func (sl *SL) GetOutput() []string {
table.Render()
// Go through deviations and add it after the table
for _, v := range sl.lastResponse.ResponseData.StopPointDeviations {
b.WriteString(v.Deviation.Text + "\n")
}
return strings.Split(b.String(), "\n")
}