1
0
Fork 0
forked from External/grumble

Merge pull request #57 from actown/travis_go14

Have Travis CI test on go 1.14.x.
This commit is contained in:
Derrick 2020-04-11 13:52:19 -07:00 committed by GitHub
commit 7abdd84378
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@ language: go
go:
- 1.9
- 1.10.x
- 1.14.x
go_import_path: mumble.info/grumble

View file

@ -161,7 +161,7 @@ func (client *Client) IsVerified() bool {
// Log a panic and disconnect the client.
func (client *Client) Panic(v ...interface{}) {
client.Print(v)
client.Print(v...)
client.Disconnect()
}