From c0331d50dcb1fec063b9bf6af631a42d7b83a98c Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Thu, 13 Oct 2016 17:47:29 -0400 Subject: 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 --- lib/ansible/plugins/callback/__init__.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'lib/ansible/plugins/callback') 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")) -- cgit v1.2.1