From 803c3f0aa0fb7d41291abd93a2c6dea4dbee721a Mon Sep 17 00:00:00 2001 From: Trevor Norris Date: Wed, 2 Jul 2014 21:02:36 -0700 Subject: [PATCH] lint: fix indentation --- lib/tls.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tls.js b/lib/tls.js index b698cc11e9d..c47d17f42e2 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -205,8 +205,8 @@ exports.checkServerIdentity = function checkServerIdentity(host, cert) { if (!valid) { var err = new Error( - util.format('Hostname/IP doesn\'t match certificate\'s altnames: %j', - reason)); + util.format('Hostname/IP doesn\'t match certificate\'s altnames: %j', + reason)); err.reason = reason; err.host = host; err.cert = cert;