* Fix module._result['diff'] (#33654)

This commit is contained in:
Kedar Kekan
2017-12-07 06:19:14 +05:30
committed by GitHub
parent 6f719ea848
commit 4cc06cca1c

View File

@@ -383,7 +383,7 @@ def load_config(module, command_filter, warnings, replace=False, admin=False, co
diff = get_config_diff(module)
if module._diff:
if diff:
module['diff'] = to_text(diff, errors='surrogate_or_strict')
module._result['diff'] = to_text(diff, errors='surrogate_or_strict')
if commit:
commit_config(module, comment=comment)
conn.edit_config('end')