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 cb78221fd..d553846e3 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -395,7 +395,7 @@ class Formula
raise LoadError
end
- raise NameError if klass.superclass != Formula
+ raise NameError if !klass.ancestors.include? Formula
return klass.new(name) if install_type == :from_name
return klass.new(name, path.to_s)