From e639c4d32b727afa3da783c84105af7886386956 Mon Sep 17 00:00:00 2001 From: Yawning Angel Date: Sat, 10 Oct 2015 15:34:56 +0000 Subject: [PATCH] Fix error message. --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 4e8d8cd..b1d4ba7 100644 --- a/conn.go +++ b/conn.go @@ -182,7 +182,7 @@ func (c *Conn) Request(fmt string, args ...interface{}) (*Response, error) { } } if resp == nil { - panic("BUG: SendRawRequest() returned a nil response and error") + panic("BUG: Request() returned a nil response and error") } if resp.IsOk() { return resp, nil