From 65a64fe7aac20b56d8da4a8fd40d7c4bcffcc432 Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Fri, 8 Jul 2016 09:24:02 +0000 Subject: [PATCH] Fix Del command case. --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 412adaec..0d8e8b2d 100644 --- a/commands.go +++ b/commands.go @@ -82,7 +82,7 @@ func (c *statefulCmdable) Select(index int) *StatusCmd { func (c *cmdable) Del(keys ...string) *IntCmd { args := make([]interface{}, 1+len(keys)) - args[0] = "DEL" + args[0] = "del" for i, key := range keys { args[1+i] = key }