Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D6A106414 for ; Mon, 13 Jun 2011 23:42:25 +0000 (UTC) Received: (qmail 23444 invoked by uid 500); 13 Jun 2011 23:42:25 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 23421 invoked by uid 500); 13 Jun 2011 23:42:25 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 23414 invoked by uid 99); 13 Jun 2011 23:42:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jun 2011 23:42:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Jun 2011 23:42:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A8FD323889B3; Mon, 13 Jun 2011 23:42:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1135341 - /hbase/trunk/src/main/ruby/shell/formatter.rb Date: Mon, 13 Jun 2011 23:42:04 -0000 To: commits@hbase.apache.org From: stack@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110613234204.A8FD323889B3@eris.apache.org> Author: stack Date: Mon Jun 13 23:42:04 2011 New Revision: 1135341 URL: http://svn.apache.org/viewvc?rev=1135341&view=rev Log: HBASE-3983 list command in shell seems broken -- Changed @mac_width to @max_width -- noticed by Todd Modified: hbase/trunk/src/main/ruby/shell/formatter.rb Modified: hbase/trunk/src/main/ruby/shell/formatter.rb URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/ruby/shell/formatter.rb?rev=1135341&r1=1135340&r2=1135341&view=diff ============================================================================== --- hbase/trunk/src/main/ruby/shell/formatter.rb (original) +++ hbase/trunk/src/main/ruby/shell/formatter.rb Mon Jun 13 23:42:04 2011 @@ -74,7 +74,7 @@ module Shell if args.length == 1 splits = split(@max_width, dump(args[0])) for l in splits - output(@mac_width, l) + output(@max_width, l) @out.puts end elsif args.length == 2