mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
linode_v4 - fixed error message (#2430)
* fixed error message * added changelog fragment
This commit is contained in:
parent
6a72c3b338
commit
5064aa8ec6
2 changed files with 4 additions and 3 deletions
2
changelogs/fragments/2430-linodev4-error-message.yml
Normal file
2
changelogs/fragments/2430-linodev4-error-message.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- linode_v4 - changed the error message to point to the correct bugtracker URL (https://github.com/ansible-collections/community.general/pull/2430).
|
|
@ -208,9 +208,8 @@ def create_linode(module, client, **kwargs):
|
|||
else:
|
||||
return response._raw_json
|
||||
except TypeError:
|
||||
module.fail_json(msg='Unable to parse Linode instance creation'
|
||||
' response. Please raise a bug against this'
|
||||
' module on https://github.com/ansible/ansible/issues'
|
||||
module.fail_json(msg='Unable to parse Linode instance creation response. Please raise a bug against this'
|
||||
' module on https://github.com/ansible-collections/community.general/issues'
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue