Merge pull request #19 from iownall555/fprintf-fix

Correct incorrect usage of fmt.Fprintf
This commit is contained in:
Daniel Oaks 2019-05-06 10:04:55 +10:00 committed by GitHub
commit 3905db30fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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