diff options
author | przemyslawpluta <przemekpluta@hotmail.com> | 2014-06-16 23:10:09 +0100 |
---|---|---|
committer | przemyslawpluta <przemekpluta@hotmail.com> | 2014-06-16 23:10:09 +0100 |
commit | 46deff1d567dc357b5693650aed059852e204496 (patch) | |
tree | aec79a961f188f96caefe55d5b43299f3cc357fc /mongo-edu.js | |
parent | ebaef4a68b13ba11b33acc669d39729192317d8a (diff) | |
download | mongo-edu-46deff1d567dc357b5693650aed059852e204496.zip |
update
py scanner / configurator
version bump
Diffstat (limited to 'mongo-edu.js')
-rw-r--r-- | mongo-edu.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mongo-edu.js b/mongo-edu.js index 5693ee5..f3b8cea 100644 --- a/mongo-edu.js +++ b/mongo-edu.js @@ -17,7 +17,7 @@ var mdbvideos = require('./lib/login'), .usage('Usage: $0 [options]') .describe('d', 'download path').describe('u', 'email address') .describe('h', 'switch from videos (default) to handouts').boolean('h') - .describe('py', 'pass python').describe('py', 'python') + .describe('py', 'py switch').describe('py', 'switch to point to Python') .describe('cw', 'switch from wiki\'s video lists (default) to courseware').boolean('cw') .describe('cwd', 'same as --cw and dumps list of videos to file in -d').boolean('cwd') .describe('cc', 'get closed captions').boolean('cc') @@ -39,7 +39,7 @@ exports.create = function start() { if (argv.d.substr(-1) !== slash) { argv.d += slash; } - validate.init(argv, function (err, profile) { + validate.init(argv, function init(err, profile) { if (err !== null) { throw err; } configure(argv, function conf(err) { |