From d0c058749a201ace8b50fbc1a8fe4e47fcf1a999 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Sat, 3 Nov 2012 17:56:00 -0700 Subject: [PATCH] configure: fix lint --- lib/configure.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/configure.js b/lib/configure.js index 376ab34..34a971f 100644 --- a/lib/configure.js +++ b/lib/configure.js @@ -1,5 +1,6 @@ module.exports = exports = configure + /** * Module dependencies. */ @@ -108,14 +109,14 @@ function configure (gyp, argv, callback) { } function failNoPython () { - callback(new Error('Can\'t find Python executable "' + python - + '", you can set the PYTHON env variable.')) + callback(new Error('Can\'t find Python executable "' + python + + '", you can set the PYTHON env variable.')) } function failPythonVersion (badVersion) { - callback(new Error('Python executable "' + python - + '" is v' + badVersion + ', which is not supported by gyp.\n' - + 'You can pass the --python switch to point to Python >= v2.5.0 & < 3.0.0.')) + callback(new Error('Python executable "' + python + + '" is v' + badVersion + ', which is not supported by gyp.\n' + + 'You can pass the --python switch to point to Python >= v2.5.0 & < 3.0.0.')) } function checkWinSDK(cb) {