From e8b631d4dff46f12e89749d9b1e3868ab2ea8b18 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 12 Feb 2018 16:51:42 -0500 Subject: [PATCH] corrected dump signature --- lib/ansible/plugins/callback/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/callback/debug.py b/lib/ansible/plugins/callback/debug.py index 4b8c716e7b..a8dbc72755 100644 --- a/lib/ansible/plugins/callback/debug.py +++ b/lib/ansible/plugins/callback/debug.py @@ -31,7 +31,7 @@ class CallbackModule(CallbackModule_default): # pylint: disable=too-few-public- CALLBACK_TYPE = 'stdout' CALLBACK_NAME = 'debug' - def _dump_results(self, result): + def _dump_results(self, result, indent=None, sort_keys=True, keep_invocation=False): '''Return the text to output for a result.''' # Enable JSON identation