mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 01:33:09 +00:00
Changed django_manage to return changed as boolean consistently (#46157)
This commit is contained in:
committed by
John R Barker
parent
5ba4e4411b
commit
ecdcb6a09f
@@ -301,7 +301,7 @@ def main():
|
||||
if filt:
|
||||
filtered_output = list(filter(filt, lines))
|
||||
if len(filtered_output):
|
||||
changed = filtered_output
|
||||
changed = True
|
||||
|
||||
module.exit_json(changed=changed, out=out, cmd=cmd, app_path=app_path, virtualenv=virtualenv,
|
||||
settings=module.params['settings'], pythonpath=module.params['pythonpath'])
|
||||
|
||||
Reference in New Issue
Block a user