aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJCount2016-11-13 22:27:45 -0500
committerJCount2016-11-13 22:27:45 -0500
commitcfdbe9c645c1a900ebd9a3a820ba52d026fbd05d (patch)
tree76ff84ba96480aca7b065a7d817179bb0046184e /Library
parentfc3d586584ea8c0208ec08c4797effa8b3824b78 (diff)
downloadbrew-cfdbe9c645c1a900ebd9a3a820ba52d026fbd05d.tar.bz2
formula_versions: fix erroneous :stable in version_attributes_map
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_versions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_versions.rb b/Library/Homebrew/formula_versions.rb
index f17ceefd5..28c2a3be8 100644
--- a/Library/Homebrew/formula_versions.rb
+++ b/Library/Homebrew/formula_versions.rb
@@ -77,7 +77,7 @@ class FormulaVersions
end
next unless f.devel
map[:devel] ||= {}
- map[:stable][f.devel.version] ||= []
+ map[:devel][f.devel.version] ||= []
map[:devel][f.devel.version] << f.send(attribute)
end
end