1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Corrected for fallthrough

This commit is contained in:
Ton Kersten 2012-11-24 16:26:15 +01:00
parent ee4fe9ff55
commit 7bba04b176

View file

@ -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])