From 3deb3bc77177ebbbec766322a8bbe805a42f7488 Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Tue, 25 Sep 2018 14:17:15 -0700 Subject: [PATCH] Coding standard issue found during CR --- server-console/src/modules/hf-process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-console/src/modules/hf-process.js b/server-console/src/modules/hf-process.js index dca97d1eed..cf94ec6b29 100644 --- a/server-console/src/modules/hf-process.js +++ b/server-console/src/modules/hf-process.js @@ -267,7 +267,7 @@ Process.prototype = extend(Process.prototype, { stdout.split("\n").forEach(function (line) { var exeData = line.split(","); var executable = exeData[0].replace(/\"/g, "").toLowerCase(); - if(executable == _command) { + if (executable == _command) { running = true; } });