1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

fix whitespace usage

This commit is contained in:
Jan Matousek
2012-10-18 19:38:39 +02:00
parent 71070d84fb
commit cc3a1da543

View File

@@ -883,9 +883,9 @@ commands.forEach(function (command) {
// store db in this.select_db to restore it on reconnect
RedisClient.prototype.select = function (db, callback) {
var self = this;
var self = this;
this.send_command('select', [db], function (err, res) {
this.send_command('select', [db], function (err, res) {
if (err === null) {
self.selected_db = db;
}