aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorJack Nagel2013-06-06 12:02:25 -0500
committerJack Nagel2013-06-06 12:10:41 -0500
commit856cebd9b45c40f361c62ca780ff8ef8976e64b9 (patch)
tree0300727154fc8d7af783280525bb20fda0000914 /Library/Homebrew/formula.rb
parent92d65aace7edfc751c342c019e895d33bbea013c (diff)
downloadbrew-856cebd9b45c40f361c62ca780ff8ef8976e64b9.tar.bz2
Use ivar accessors
Diffstat (limited to 'Library/Homebrew/formula.rb')
-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 ead132bbf..7ad2fb635 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -45,7 +45,7 @@ class Formula
@active_spec = determine_active_spec
validate_attributes :url, :name, :version
- @downloader = download_strategy.new(name, @active_spec)
+ @downloader = download_strategy.new(name, active_spec)
# Combine DSL `option` and `def options`
options.each do |opt, desc|