From ee4fe9ff55278a03aebd5d31fa448a59a10fd940 Mon Sep 17 00:00:00 2001 From: Ton Kersten Date: Sat, 24 Nov 2012 13:36:32 +0100 Subject: [PATCH] Added pip-python to the search for CentOS 6 compatibility --- library/pip | 3 +++ 1 file changed, 3 insertions(+) diff --git a/library/pip b/library/pip index 7ca62ca107c..fe5823f1e57 100644 --- a/library/pip +++ b/library/pip @@ -136,6 +136,9 @@ def main(): err += err_venv pip = module.get_bin_path('python-pip', False, ['%s/bin' % env]) + if not pip: + pip = module.get_bin_path('pip-python', True, ['%s/bin' % env]) + if not pip: pip = module.get_bin_path('pip', True, ['%s/bin' % env])