diff --git a/src/redis-cli.c b/src/redis-cli.c index ecb57e96..c364f9a9 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -493,7 +493,7 @@ static sds cliFormatReplyCSV(redisReply *r) { out = sdscatrepr(out,r->str,r->len); break; case REDIS_REPLY_NIL: - out = sdscat(out,"NIL\n"); + out = sdscat(out,"NIL"); break; case REDIS_REPLY_ARRAY: for (i = 0; i < r->elements; i++) {