summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/callback/__init__.py
diff options
context:
space:
mode:
authorAdrian Likins <alikins@redhat.com>2016-10-13 17:47:29 -0400
committerMichael Scherer <mscherer@users.noreply.github.com>2016-10-23 13:36:20 +0200
commitc0331d50dcb1fec063b9bf6af631a42d7b83a98c (patch)
tree8182d0bd13c726f98f2cbd61a9dafff7db52044c /lib/ansible/plugins/callback/__init__.py
parent39e86ae2bc3a0090d4dca3ae9a7eedfe6b2be5ae (diff)
downloadansible-c0331d50dcb1fec063b9bf6af631a42d7b83a98c.tar.gz
Remove callback.CallbackBase._copy_result_exclude
Nothing seems to use this now. Was added originally added in2d11cfab92f9d26448461b4bc81f466d1910a15e but the code that used it was removed in e02b98274b60cdbc12ef4a4c74ae0f74207384e8
Diffstat (limited to 'lib/ansible/plugins/callback/__init__.py')
-rw-r--r--lib/ansible/plugins/callback/__init__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/ansible/plugins/callback/__init__.py b/lib/ansible/plugins/callback/__init__.py
index d02e5ac3be..84393e0360 100644
--- a/lib/ansible/plugins/callback/__init__.py
+++ b/lib/ansible/plugins/callback/__init__.py
@@ -72,18 +72,6 @@ class CallbackBase:
''' helper for callbacks, so they don't all have to include deepcopy '''
_copy_result = deepcopy
- def _copy_result_exclude(self, result, exclude):
- values = []
- for e in exclude:
- values.append(getattr(result, e))
- setattr(result, e, None)
-
- result_copy = deepcopy(result)
- for i,e in enumerate(exclude):
- setattr(result, e, values[i])
-
- return result_copy
-
def _dump_results(self, result, indent=None, sort_keys=True, keep_invocation=False):
if result.get('_ansible_no_log', False):
return json.dumps(dict(censored="the output has been hidden due to the fact that 'no_log: true' was specified for this result"))