mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
os_user: fix typo (self is not defined)
This commit is contained in:
parent
95b59cd76c
commit
d51064a05e
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ def main():
|
||||||
if not password:
|
if not password:
|
||||||
msg = ("update_password is %s but a password value is "
|
msg = ("update_password is %s but a password value is "
|
||||||
"missing") % update_password
|
"missing") % update_password
|
||||||
self.fail_json(msg=msg)
|
module.fail_json(msg=msg)
|
||||||
default_project_id = None
|
default_project_id = None
|
||||||
if default_project:
|
if default_project:
|
||||||
default_project_id = _get_default_project_id(cloud, default_project)
|
default_project_id = _get_default_project_id(cloud, default_project)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue