From a15902b5432fea9037c716c9aa498ec267c013e1 Mon Sep 17 00:00:00 2001 From: Artem Skvira Date: Tue, 19 Oct 2010 00:42:09 +1100 Subject: [PATCH] Fixed bug with wrong variable name for error reporting --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c337c70..ad092cb 100644 --- a/index.js +++ b/index.js @@ -44,7 +44,7 @@ function _initInternal(hostname, callback) { conf = require(conf_path).conf; _processProperties(conf); } catch(err) { - sys.log('Unable to locate file ' + common_path); + sys.log('Unable to locate file ' + conf_path); callback(err); return; }