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) {