1
0
Fork 0
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:
Abhijeet 2017-04-16 16:40:36 +05:30 committed by ansibot
parent 40f9f98f7c
commit 89fc098488

View file

@ -91,7 +91,8 @@ def main():
) )
if not HAS_GITHUB_API: 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'] repo = module.params['repo']
user = module.params['user'] user = module.params['user']