From cc91273f8bceea64f086677f76aeeca31c7548c7 Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sat, 25 Jul 2015 15:07:10 +0800 Subject: [PATCH] caveats: fix extra empty line --- Library/Homebrew/caveats.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/caveats.rb b/Library/Homebrew/caveats.rb index d495de3ef2..7d0d3d0dea 100644 --- a/Library/Homebrew/caveats.rb +++ b/Library/Homebrew/caveats.rb @@ -32,7 +32,7 @@ class Caveats end def keg_only_text - return "" unless f.keg_only? + return unless f.keg_only? s = "This formula is keg-only, which means it was not symlinked into #{HOMEBREW_PREFIX}." s << "\n\n#{f.keg_only_reason.to_s}"