summaryrefslogtreecommitdiff
path: root/shell/utils.js
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-10-12 16:27:35 -0400
committerEliot Horowitz <eliot@10gen.com>2009-10-12 16:27:35 -0400
commit6dad2527d203f0b4a9f1d3a94bbad74a8156a166 (patch)
tree33b567618ced6d891484af7c03f4ac50c649bdfe /shell/utils.js
parentadec9f4fae559811412014e8442893483115b07a (diff)
downloadmongo-6dad2527d203f0b4a9f1d3a94bbad74a8156a166.tar.gz
fix json tesst
Diffstat (limited to 'shell/utils.js')
-rw-r--r--shell/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/utils.js b/shell/utils.js
index 66986947314..4ffde9a066b 100644
--- a/shell/utils.js
+++ b/shell/utils.js
@@ -384,7 +384,7 @@ tojsonObject = function( x, indent , nolint ){
var total = 0;
for ( var k in x ) total++;
if ( total == 0 ) {
- s += indent + tabSpace;
+ s += indent + lineEnding;
}
var num = 1;