diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-10-12 16:27:35 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-10-12 16:27:35 -0400 |
commit | 6dad2527d203f0b4a9f1d3a94bbad74a8156a166 (patch) | |
tree | 33b567618ced6d891484af7c03f4ac50c649bdfe /shell/utils.js | |
parent | adec9f4fae559811412014e8442893483115b07a (diff) | |
download | mongo-6dad2527d203f0b4a9f1d3a94bbad74a8156a166.tar.gz |
fix json tesst
Diffstat (limited to 'shell/utils.js')
-rw-r--r-- | shell/utils.js | 2 |
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; |