diff options
| author | Tim D. Smith | 2015-05-05 13:45:11 -0700 |
|---|---|---|
| committer | Tim D. Smith | 2015-05-07 00:16:41 -0700 |
| commit | 86612c253db302a4e5e2c4790f1cadc1d31812c6 (patch) | |
| tree | 555bf279fc2931913e6e8fcd910cd87c844312b5 /Library | |
| parent | 417b1dffa59b5b9d2b4b44c69515af7c901ef92c (diff) | |
| download | brew-86612c253db302a4e5e2c4790f1cadc1d31812c6.tar.bz2 | |
anticipate python 3.5 in .pth audit
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_cellar_checks.rb | 2 |
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 |
