From 130824c3e19ff057e4f3e154845b615cb0359891 Mon Sep 17 00:00:00 2001 From: Arnaud Venturi Date: Tue, 7 Aug 2018 17:53:19 +0000 Subject: [PATCH] Correct a typo in pip module error message (#43784) --- lib/ansible/modules/packaging/language/pip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/language/pip.py b/lib/ansible/modules/packaging/language/pip.py index 830c283fa23..12e90cd0bf6 100644 --- a/lib/ansible/modules/packaging/language/pip.py +++ b/lib/ansible/modules/packaging/language/pip.py @@ -331,7 +331,7 @@ def _get_pip(module, env=None, executable=None): # (therefore, that pip was not found) module.fail_json(msg='Unable to find pip in the virtualenv, %s, ' % env + 'under any of these names: %s. ' % (', '.join(candidate_pip_basenames)) + - 'Make sire pip is present in the virtualenv.') + 'Make sure pip is present in the virtualenv.') return pip