Merge "Update json module to jsonutils"
This commit is contained in:
commit
2fb95cb8bd
@ -16,10 +16,9 @@
|
|||||||
"""Panko v2 event action implementations"""
|
"""Panko v2 event action implementations"""
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
import json
|
|
||||||
|
|
||||||
from osc_lib.command import command
|
from osc_lib.command import command
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
|
from oslo_serialization import jsonutils
|
||||||
|
|
||||||
|
|
||||||
class EventList(command.Lister):
|
class EventList(command.Lister):
|
||||||
@ -94,7 +93,7 @@ class EventShow(command.ShowOne):
|
|||||||
ac = self.app.client_manager.event
|
ac = self.app.client_manager.event
|
||||||
event = ac.event.get(message_id=parsed_args.message_id)
|
event = ac.event.get(message_id=parsed_args.message_id)
|
||||||
data = copy.deepcopy(event._info)
|
data = copy.deepcopy(event._info)
|
||||||
data.update({'traits': json.dumps(data['traits'], indent=4)})
|
data.update({'traits': jsonutils.dumps(data['traits'], indent=4)})
|
||||||
return self.dict2columns(data)
|
return self.dict2columns(data)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user