aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 29171757b..ed7dd158f 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -245,7 +245,7 @@ class Formula <UnidentifiedFormula
def self.create name
require Formula.path(name)
return eval(Formula.class(name)).new(name)
- rescue
+ rescue LoadError
raise "No formula for #{name}"
end
end