aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-04-14 23:29:15 -0500
committerJack Nagel2013-04-14 23:29:15 -0500
commit33e00b7f7cea10ce470c5482058410e5b6915a63 (patch)
tree4e8693e954d05000cb1594dea42aced1e8e1cc68 /Library
parenta78ae63153da85b4490c833a296b4c2009225e09 (diff)
downloadbrew-33e00b7f7cea10ce470c5482058410e5b6915a63.tar.bz2
Style nit
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 494024278..8217f30c9 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -326,8 +326,8 @@ class Formula
def self.each
names.each do |name|
- yield begin
- Formula.factory(name)
+ begin
+ yield Formula.factory(name)
rescue
# Don't let one broken formula break commands. But do complain.
onoe "Failed to import: #{name}"