Update audit_template create help message

'id' should be an integer, not string.
Closes-Bug: #1734056
Change-Id: I4275127e7f76ba6ad05f478278204c3de535cf5c
This commit is contained in:
Yumeng Bao
2017-11-24 11:19:40 +08:00
parent bf706365ea
commit 1a6703266f

View File

@@ -180,9 +180,9 @@ class CreateAuditTemplate(command.ShowOne):
"JSON example:\n"
"[{\"compute\":\n"
" [{\"host_aggregates\": [\n"
" {\"id\": \"1\"},\n"
" {\"id\": \"2\"},\n"
" {\"id\": \"3\"}]},\n"
" {\"id\": 1},\n"
" {\"id\": 2},\n"
" {\"id\": 3}]},\n"
" {\"availability_zones\": [\n"
" {\"name\": \"AZ1\"},\n"
" {\"name\": \"AZ2\"}]},\n"