aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils.rb
diff options
context:
space:
mode:
authorMax Howell2009-10-23 16:05:32 +0100
committerMax Howell2009-10-23 19:22:51 +0100
commite5fbf809c507214e0cf01b5db46c5d0d52fab445 (patch)
treecedd09cb7bea22ec243797f20b441faea81e09bd /Library/Homebrew/utils.rb
parent83b57244656f2c79bdf7e41812e82fa5645fd511 (diff)
downloadhomebrew-e5fbf809c507214e0cf01b5db46c5d0d52fab445.tar.bz2
Call to_s on ohai parameters
Diffstat (limited to 'Library/Homebrew/utils.rb')
-rw-r--r--Library/Homebrew/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index d6f1e401f..e9a480ed2 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -47,7 +47,7 @@ end
# args are additional inputs to puts until a nil arg is encountered
def ohai title, *sput
- title = title[0, `/usr/bin/tput cols`.strip.to_i-4] unless ARGV.verbose?
+ title = title.to_s[0, `/usr/bin/tput cols`.strip.to_i-4] unless ARGV.verbose?
puts "#{Tty.blue}==>#{Tty.white} #{title}#{Tty.reset}"
puts *sput unless sput.empty?
end