Commit 3bf088c0 by Rodney Quillo

Fix tabs/spaces.

parent 621eb5ec
...@@ -419,7 +419,7 @@ def main(): ...@@ -419,7 +419,7 @@ def main():
if user_exists(cursor, user): if user_exists(cursor, user):
if module.check_mode: if module.check_mode:
kw['changed'] = True kw['changed'] = True
module.exit_json(**kw) module.exit_json(**kw)
changed = user_alter(cursor, user, password, role_attr_flags) changed = user_alter(cursor, user, password, role_attr_flags)
...@@ -429,7 +429,7 @@ def main(): ...@@ -429,7 +429,7 @@ def main():
module.fail_json(msg=msg) module.fail_json(msg=msg)
if module.check_mode: if module.check_mode:
kw['changed'] = True kw['changed'] = True
module.exit_json(**kw) module.exit_json(**kw)
changed = user_add(cursor, user, password, role_attr_flags) changed = user_add(cursor, user, password, role_attr_flags)
...@@ -438,7 +438,7 @@ def main(): ...@@ -438,7 +438,7 @@ def main():
if user_exists(cursor, user): if user_exists(cursor, user):
if module.check_mode: if module.check_mode:
kw['changed'] = True kw['changed'] = True
kw['user_removed'] = True kw['user_removed'] = True
module.exit_json(**kw) module.exit_json(**kw)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment