aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorMike McQuaid2018-03-03 09:42:25 +0000
committerMike McQuaid2018-03-03 09:42:25 +0000
commit70253f0009ee8095a5d10ee7bdd891f1fe5cc35c (patch)
tree4e161095ae6bce7c24bb7a9bd8b1abce43108b1c /Library/Homebrew/exceptions.rb
parent84d718cbef0b96ef621a2ec51171f7d66c20f87d (diff)
downloadbrew-70253f0009ee8095a5d10ee7bdd891f1fe5cc35c.tar.bz2
Adjust docs and more internal code for Python 3.
Now we have `python` for Python 3 and `python@2` for Python 2 some more adjustments need to be made.
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
-rw-r--r--Library/Homebrew/exceptions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 42c62338a..20ad2a378 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -343,8 +343,8 @@ class FormulaAmbiguousPythonError < RuntimeError
def initialize(formula)
super <<~EOS
The version of python to use with the virtualenv in the `#{formula.full_name}` formula
- cannot be guessed automatically. If the simultaneous use of python and python3
- is intentional, please add `:using => "python"` or `:using => "python3"` to
+ cannot be guessed automatically. If the simultaneous use of python and python@2
+ is intentional, please add `:using => "python"` or `:using => "python@2"` to
`virtualenv_install_with_resources` to resolve the ambiguity manually.
EOS
end