aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements/python_dependency.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-13 20:19:35 -0800
committerAdam Vandenberg2013-11-13 20:23:27 -0800
commitc496c93e3aba8620717c148e44c20aa08bd34903 (patch)
treec279790c5d3c4b104b8dc7c80d53c30d2536752d /Library/Homebrew/requirements/python_dependency.rb
parentfd2f302cc36ed6402eec20163ba4626a58bc5709 (diff)
downloadhomebrew-c496c93e3aba8620717c148e44c20aa08bd34903.tar.bz2
grammar edits
Diffstat (limited to 'Library/Homebrew/requirements/python_dependency.rb')
-rw-r--r--Library/Homebrew/requirements/python_dependency.rb4
1 files changed, 2 insertions, 2 deletions
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|