From 45e19bc7ccd5d3db33556d035ec1206973e2464d Mon Sep 17 00:00:00 2001 From: John Crepezzi Date: Sun, 27 Dec 2015 12:59:59 -0500 Subject: [PATCH] fix indentation --- lib/document_stores/redis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/document_stores/redis.js b/lib/document_stores/redis.js index 2301bbe..3f72d4b 100644 --- a/lib/document_stores/redis.js +++ b/lib/document_stores/redis.js @@ -27,7 +27,7 @@ RedisDocumentStore.connect = function(options) { RedisDocumentStore.client = redis.createClient(port, host); // authenticate if password is provided if (options.password) { - RedisDocumentStore.client.auth(options.password); + RedisDocumentStore.client.auth(options.password); } RedisDocumentStore.client.select(index, function(err, reply) { if (err) {