Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/grumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick <actown@users.noreply.github.com>2020-04-11 23:52:19 +0300
committerGitHub <noreply@github.com>2020-04-11 23:52:19 +0300
commit7abdd84378173a8df907d2dce2d8eec535c49862 (patch)
treeffbda9621f46dab47c338be13e3cbcd37393dab1
parenta6dc45193af2512a7d51919708ad27e2c4f81236 (diff)
parent181a4f321998046264246cfeb348803636c1c386 (diff)
Merge pull request #57 from actown/travis_go14
Have Travis CI test on go 1.14.x.
-rw-r--r--.travis.yml1
-rw-r--r--cmd/grumble/client.go2
2 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d93dde3..3deeae1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,7 @@ language: go
go:
- 1.9
- 1.10.x
+ - 1.14.x
go_import_path: mumble.info/grumble
diff --git a/cmd/grumble/client.go b/cmd/grumble/client.go
index 8fb1650..a2f535a 100644
--- a/cmd/grumble/client.go
+++ b/cmd/grumble/client.go
@@ -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()
}