From 7df136cd50f4d5a621cc8bc4bbdeaf4b3216e627 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Wed, 13 Nov 2013 20:19:35 -0800 Subject: grammar edits --- Library/Homebrew/requirements/python_dependency.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Library/Homebrew/requirements/python_dependency.rb') diff --git a/Library/Homebrew/requirements/python_dependency.rb b/Library/Homebrew/requirements/python_dependency.rb index ff1d0ba67..b15d7f706 100644 --- a/Library/Homebrew/requirements/python_dependency.rb +++ b/Library/Homebrew/requirements/python_dependency.rb @@ -85,7 +85,7 @@ class PythonDependency < Requirement ENV['PYTHONPATH'] = nil @unsatisfied_because = '' if binary.nil? || !binary.executable? - @unsatisfied_because += "No `#{@python}` found in your PATH! Consider to `brew install #{@python}`." + @unsatisfied_because += "No `#{@python}` found in your PATH. To install with Homebrew use `brew install #{@python}`." false elsif pypy? @unsatisfied_because += "Your #{@python} executable appears to be a PyPy, which is not supported." @@ -97,7 +97,7 @@ class PythonDependency < Requirement @unsatisfied_because += "Python version #{version} is too old (need at least #{@min_version})." false elsif @min_version.major == 2 && `python -c "import sys; print(sys.version_info[0])"`.strip == "3" - @unsatisfied_because += "Your `python` points to a Python 3.x. This is not supported." + @unsatisfied_because += "Your `python` points to Python 3.x; this is not supported." false else @imports.keys.all? do |module_name| -- cgit v1.2.3