diff options
Diffstat (limited to 'Library/Homebrew/compat/requirements.rb')
| -rw-r--r-- | Library/Homebrew/compat/requirements.rb | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/Library/Homebrew/compat/requirements.rb b/Library/Homebrew/compat/requirements.rb index 38344c1fc..3dd5c7479 100644 --- a/Library/Homebrew/compat/requirements.rb +++ b/Library/Homebrew/compat/requirements.rb @@ -84,16 +84,16 @@ end  class PythonRequirement < Requirement    fatal true    satisfy do -    odeprecated("PythonRequirement", "'depends_on \"python\"'") -    which "python" +    odeprecated("PythonRequirement", "'depends_on \"python@2\"'") +    which "python2"    end  end  class Python3Requirement < Requirement    fatal true    satisfy do -    odeprecated("Python3Requirement", "'depends_on \"python3\"'") -    which "python3" +    odeprecated("Python3Requirement", "'depends_on \"python\"'") +    which "python"    end  end | 
