diff --git a/vitrageclient/v1/cli/event.py b/vitrageclient/v1/cli/event.py index 409ed46..9a89d66 100644 --- a/vitrageclient/v1/cli/event.py +++ b/vitrageclient/v1/cli/event.py @@ -12,6 +12,8 @@ # License for the specific language governing permissions and limitations # under the License. +import json + from cliff import command from datetime import datetime @@ -58,4 +60,4 @@ class EventPost(command.Command): self.app.client.event.post(event_time=event_time, event_type=event_type, - details=details) + details=json.loads(details))