From be983cfcdf4396aaa8d8c843578c3b3be7cfc1af Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 13 Sep 2018 09:07:43 +0100 Subject: [PATCH] info: also make verbose output readable. --- Library/Homebrew/cmd/info.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index 52c236db14..ece72498fd 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -207,7 +207,7 @@ module Homebrew value.each do |range, results| oh1 "#{category} (#{range})" results.each do |name_with_options, count| - puts "#{name_with_options}: #{count}" + puts "#{name_with_options}: #{number_readable(count)}" end end end