From 0a0f8ea3c0c62e206f1d373ed243022ca1a0b54c Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Mon, 29 Sep 2008 17:06:46 +0000 Subject: [PATCH] HBASE-906 [shell] Truncates output git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/branches/0.18@700177 13f79535-47bb-0310-9956-ffa450edef68 --- bin/Formatter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Formatter.rb b/bin/Formatter.rb index 74436b8b3ba..ad5ecd4dd0f 100644 --- a/bin/Formatter.rb +++ b/bin/Formatter.rb @@ -88,7 +88,7 @@ module Formatter return end # Remove double-quotes added by 'dump'. - return str.dump[1..-1] + return str.dump[1..-2] end def output(width, str)