From 1b78fe240ed3b8a6ad06e0ace859bdd537a8ff82 Mon Sep 17 00:00:00 2001 From: polamjag Date: Sat, 11 Jul 2015 15:39:23 +0900 Subject: [PATCH] exceptions: don't bracket url Closes Homebrew/homebrew#41592. Signed-off-by: Dominyk Tiller --- Library/Homebrew/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 8e1b722a28..59a374535e 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"