aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTim D. Smith2015-05-05 13:45:11 -0700
committerTim D. Smith2015-05-07 00:16:41 -0700
commit86612c253db302a4e5e2c4790f1cadc1d31812c6 (patch)
tree555bf279fc2931913e6e8fcd910cd87c844312b5 /Library
parent417b1dffa59b5b9d2b4b44c69515af7c901ef92c (diff)
downloadbrew-86612c253db302a4e5e2c4790f1cadc1d31812c6.tar.bz2
anticipate python 3.5 in .pth audit
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_cellar_checks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb
index 848965016..1c2217478 100644
--- a/Library/Homebrew/formula_cellar_checks.rb
+++ b/Library/Homebrew/formula_cellar_checks.rb
@@ -127,7 +127,7 @@ module FormulaCellarChecks
end
def check_easy_install_pth lib
- pth_found = Dir["#{lib}/python{2.7,3.4}/site-packages/easy-install.pth"].map { |f| File.dirname(f) }
+ pth_found = Dir["#{lib}/python{2.7,3}*/site-packages/easy-install.pth"].map { |f| File.dirname(f) }
return if pth_found.empty?
<<-EOS.undent