Don't jsonify after and before on diff return. (#49092)
This commit is contained in:
parent
771a706c20
commit
35049a148a
1 changed files with 1 additions and 4 deletions
|
@ -680,10 +680,7 @@ class DifferenceTracker(object):
|
|||
for item in self._diff:
|
||||
before[item['name']] = item['active']
|
||||
after[item['name']] = item['parameter']
|
||||
return (
|
||||
jsonify(before, sort_keys=True, indent=2),
|
||||
jsonify(after, sort_keys=True, indent=2),
|
||||
)
|
||||
return before, after
|
||||
|
||||
def get_legacy_docker_container_diffs(self):
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue