mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update package installation warning (#23641)
Github_release requires github3.py==1.0.0a4, update warning for the same. Fixes https://github.com/ansible/ansible/issues/23626 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
40f9f98f7c
commit
89fc098488
1 changed files with 2 additions and 1 deletions
|
@ -91,7 +91,8 @@ def main():
|
|||
)
|
||||
|
||||
if not HAS_GITHUB_API:
|
||||
module.fail_json(msg='Missing requried github3 module (check docs or install with: pip install github3)')
|
||||
module.fail_json(msg='Missing required github3 module (check docs or '
|
||||
'install with: pip install github3.py==1.0.0a4)')
|
||||
|
||||
repo = module.params['repo']
|
||||
user = module.params['user']
|
||||
|
|
Loading…
Reference in a new issue