aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2016-12-13 22:41:44 -0800
committerGitHub2016-12-13 22:41:44 -0800
commit9cd5a21b473f0271b162bbe7f77f7d1468c0cfa1 (patch)
tree6e4f048dc38899035b9a6f85a3e9bd57259604d6
parent99f42146c06333f820f45ed1940c5487990e2b31 (diff)
parent478e4f112c5482a0424c0a27c6d9d10fea3d2c07 (diff)
downloadbrew-9cd5a21b473f0271b162bbe7f77f7d1468c0cfa1.tar.bz2
Merge pull request #1669 from vladshablinsky/fix_method_deprecated1.1.5
formulary: call tap not formula
-rw-r--r--Library/Homebrew/formulary.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb
index 6ed5b91ba..90e0dc2d4 100644
--- a/Library/Homebrew/formulary.rb
+++ b/Library/Homebrew/formulary.rb
@@ -211,7 +211,7 @@ class Formulary
def load_file
super
rescue MethodDeprecatedError => e
- e.issues_url = formula.tap.issues_url || formula.tap.to_s
+ e.issues_url = tap.issues_url || tap.to_s
raise
end
end