aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorpolamjag2015-07-11 15:39:23 +0900
committerDominyk Tiller2015-07-22 05:07:35 +0100
commit1b78fe240ed3b8a6ad06e0ace859bdd537a8ff82 (patch)
treea48ef0af9b68eb0ceadc06da7e45195dad3a3960 /Library
parentd2c1a182d55bb97f68a038a616ddcdb27df76ca2 (diff)
downloadbrew-1b78fe240ed3b8a6ad06e0ace859bdd537a8ff82.tar.bz2
exceptions: don't bracket url
Closes Homebrew/homebrew#41592. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 8e1b722a2..59a374535 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -216,7 +216,7 @@ class BuildError < RuntimeError
puts
unless RUBY_VERSION < "1.8.7" || issues.empty?
puts "These open issues may also help:"
- puts issues.map{ |i| "#{i['title']} (#{i['html_url']})" }.join("\n")
+ puts issues.map{ |i| "#{i['title']} #{i['html_url']}" }.join("\n")
end
if MacOS.version >= "10.11"