aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorMike McQuaid2018-03-03 18:17:04 +0000
committerGitHub2018-03-03 18:17:04 +0000
commitbc3389bdae5be31e5447802cb0eb8e1a967f5b4d (patch)
tree2d61e66163e0fbf4650f38bb104374a32f53914c /Library/Homebrew/exceptions.rb
parent5e3003688f801a49a46c1b24cb5e27d5c276af30 (diff)
parent70253f0009ee8095a5d10ee7bdd891f1fe5cc35c (diff)
downloadbrew-master.tar.bz2
Merge pull request #3863 from MikeMcQuaid/python3-changesHEADmaster
Adjust docs and more internal code for Python 3.
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