aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-12 14:48:16 -0500
committerJack Nagel2013-06-12 14:48:16 -0500
commitc77e9d5cdffd557be9194ac38274f2a1a712ddc0 (patch)
treed50fc9fcda8ae07fda117cd35e7408b15ffd4be7 /Library
parentc0c4bdd19cedda5b1f83c942bba636c61eaf1f08 (diff)
downloadhomebrew-c77e9d5cdffd557be9194ac38274f2a1a712ddc0.tar.bz2
Use inspect instead of escaping quotes
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/search.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb
index ad443daf4..538a00ddc 100644
--- a/Library/Homebrew/cmd/search.rb
+++ b/Library/Homebrew/cmd/search.rb
@@ -26,7 +26,7 @@ module Homebrew extend self
if not query.to_s.empty? and $stdout.tty? and msg = blacklisted?(query)
unless search_results.empty?
puts
- puts "If you meant `#{query}' precisely:"
+ puts "If you meant #{query.inspect} precisely:"
puts
end
puts msg
@@ -54,7 +54,7 @@ module Homebrew extend self
results.each { |r| puts_columns r }
if $found == 0 and not blacklisted? query
- puts "No formula found for \"#{query}\". Searching open pull requests..."
+ puts "No formula found for #{query.inspect}. Searching open pull requests..."
GitHub.find_pull_requests(rx) { |pull| puts pull }
end
end