Skip to content

Commit

Permalink
basic: Update required library message (ansible#68657)
Browse files Browse the repository at this point in the history
Updated missing_required_lib API message.

Signed-off-by: Abhijeet Kasurde <[email protected]>
  • Loading branch information
Akasurde authored Apr 9, 2020
1 parent 780067e commit 0f8937f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/required_lib_message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- Update required library message with correct grammer in basic.py.
2 changes: 1 addition & 1 deletion lib/ansible/module_utils/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def missing_required_lib(library, reason=None, url=None):
if url:
msg += " See %s for more info." % url

msg += (" Please read module documentation and install in the appropriate location."
msg += (" Please read the module documentation and install it in the appropriate location."
" If the required library is installed, but Ansible is using the wrong Python interpreter,"
" please consult the documentation on ansible_python_interpreter")
return msg
Expand Down

0 comments on commit 0f8937f

Please sign in to comment.