doctor: don't complain if reads_brewed_pth_files? is nil

Closes Homebrew/homebrew#33957.
This commit is contained in:
Tim D. Smith 2014-11-10 19:25:46 -08:00
parent 10d0824483
commit f388992b02

View File

@ -1165,7 +1165,7 @@ end
def check_for_pth_support def check_for_pth_support
homebrew_site_packages = Language::Python.homebrew_site_packages homebrew_site_packages = Language::Python.homebrew_site_packages
return unless homebrew_site_packages.directory? return unless homebrew_site_packages.directory?
return if Language::Python.reads_brewed_pth_files? "python" return if Language::Python.reads_brewed_pth_files?("python") != false
return unless Language::Python.in_sys_path?("python", homebrew_site_packages) return unless Language::Python.in_sys_path?("python", homebrew_site_packages)
user_site_packages = Language::Python.user_site_packages "python" user_site_packages = Language::Python.user_site_packages "python"
<<-EOS.undent <<-EOS.undent