diff options
-rw-r--r-- | lcm/pub/msapi/aai.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/pub/msapi/aai.py b/lcm/pub/msapi/aai.py index 73f124b8..7c814487 100644 --- a/lcm/pub/msapi/aai.py +++ b/lcm/pub/msapi/aai.py @@ -56,7 +56,7 @@ def query_customer_aai(global_customer_id): if ret[0] != 0: logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) raise NSLCMException("Get customer info exception in AAI") - return json.JSONDecoder().decode(ret[1]) if ret[1] else ret[1], ret[2] + return json.JSONDecoder().decode(ret[1]) if ret[1] else ret[1] def delete_customer_aai(global_customer_id, resource_version=""): |