aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUladzislau Shablinski2016-12-14 05:07:54 +0300
committerUladzislau Shablinski2016-12-14 05:07:54 +0300
commit478e4f112c5482a0424c0a27c6d9d10fea3d2c07 (patch)
tree684a6eda89c3f93e7f918b6f55a253c7d6be31fa
parent755be9a2ee0f9670a1b47a2c99b0c936eb07d2cf (diff)
downloadbrew-478e4f112c5482a0424c0a27c6d9d10fea3d2c07.tar.bz2
formulary: call tap not formula
Fixes #1668
-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