From ecdcb6a09f05795d16720ca45adc0c3f168fa0c3 Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Wed, 24 Oct 2018 13:56:37 +0200 Subject: [PATCH] Changed django_manage to return changed as boolean consistently (#46157) --- lib/ansible/modules/web_infrastructure/django_manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/web_infrastructure/django_manage.py b/lib/ansible/modules/web_infrastructure/django_manage.py index c96a049953..89195a2e86 100644 --- a/lib/ansible/modules/web_infrastructure/django_manage.py +++ b/lib/ansible/modules/web_infrastructure/django_manage.py @@ -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'])