Correct incorrect usage of fmt.Fprintf

This commit is contained in:
Andrew 2019-05-06 09:28:11 +10:00
parent be1bb797f4
commit 0675bf18e0

@ -242,7 +242,7 @@ func (sc *ServerConnection) Send(tags map[string]string, prefix string, command
if err != nil {
return err
}
fmt.Fprintf(sc.RawConnection, line)
fmt.Fprint(sc.RawConnection, line)
// dispatch raw event
info := eventmgr.NewInfoMap()