diff options
author | Harry Huang <huangxiangyu5@huawei.com> | 2018-01-18 20:11:55 +0800 |
---|---|---|
committer | Harry Huang <huangxiangyu5@huawei.com> | 2018-01-18 20:11:55 +0800 |
commit | 057c5a072639c1feb1a7aa6312e9b6c309ea2f8b (patch) | |
tree | 5da6e1181f25fa1364646aff2166ac072c831d0d /deploy/status_callback.py | |
parent | 522bce77aee6680a977fa7d0acac3d4091202377 (diff) |
Using simplejson instead of json
JIRA: COMPASS-574
As Ansible upgrade patch will bring in json
module issue. Using simplejson module to
avoid module confusion.
Change-Id: I752b126e37753187fd74daa4fc6fe202f71eec24
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
Diffstat (limited to 'deploy/status_callback.py')
-rw-r--r-- | deploy/status_callback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/status_callback.py b/deploy/status_callback.py index f0615f3f..6169b87f 100644 --- a/deploy/status_callback.py +++ b/deploy/status_callback.py @@ -8,7 +8,7 @@ ############################################################################## import httplib -import json +import simplejson as json import sys # noqa:F401 from ansible.plugins.callback import CallbackBase |