From ed72f1807e28e2788b615cd8cc771bf8e88f89ed Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 30 Jan 2014 11:10:59 -0800 Subject: [PATCH] tidiness --- tools/commands.js | 2 +- tools/main.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/commands.js b/tools/commands.js index 5cd1ce6776..3ed540b528 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -1212,7 +1212,7 @@ main.registerCommand({ main.registerCommand({ name: 'admin grant' }, function (options) { - process.stderr.write("'admin grant' command not implemented yet"); + process.stderr.write("'admin grant' command not implemented yet\n"); return 0; }); diff --git a/tools/main.js b/tools/main.js index 9f0d3df132..820e4d1ac6 100644 --- a/tools/main.js +++ b/tools/main.js @@ -424,7 +424,7 @@ Fiber(function () { // tradition. _.each(commands['--'] || {}, function (value, key) { if (_.has(isBoolean, "--" + key)) - throw new Error("--" + key + " is both an option and a command?") + throw new Error("--" + key + " is both an option and a command?"); isBoolean["--" + key] = true; });