Skip to content
Snippets Groups Projects
Commit 1b78fe24 authored by polamjag's avatar polamjag Committed by Dominyk Tiller
Browse files

exceptions: don't bracket url


Closes Homebrew/homebrew#41592.

Signed-off-by: default avatarDominyk Tiller <dominyktiller@gmail.com>
parent d2c1a182
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment