From 7bba04b1766ee3074be49249c027312b3e5e141c Mon Sep 17 00:00:00 2001 From: Ton Kersten Date: Sat, 24 Nov 2012 16:26:15 +0100 Subject: [PATCH] Corrected for fallthrough --- library/pip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/pip b/library/pip index fe5823f1e5..1912967557 100644 --- a/library/pip +++ b/library/pip @@ -137,7 +137,7 @@ def main(): 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]) + pip = module.get_bin_path('pip-python', False, ['%s/bin' % env]) if not pip: pip = module.get_bin_path('pip', True, ['%s/bin' % env])