aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/versions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/versions.rb b/Library/Homebrew/cmd/versions.rb
index 5a84e9b50..48496d99a 100644
--- a/Library/Homebrew/cmd/versions.rb
+++ b/Library/Homebrew/cmd/versions.rb
@@ -9,9 +9,9 @@ module Homebrew extend self
puts f.versions * " "
else
f.versions do |version, sha|
- print Tty.white
+ print Tty.white.to_s
print "#{version.ljust(8)} "
- print Tty.reset
+ print Tty.reset.to_s
puts "git checkout #{sha} #{f.pretty_relative_path}"
end
end