Align json indents

This patch aligns indents for showing json data.

Change-Id: I042f50a5bb06a0e84b142f9cd8f32ae26a4eb7a7
This commit is contained in:
Hiroaki Kobayashi 2018-01-15 15:37:26 +09:00
parent c8d0bb7830
commit 34c711ea70
2 changed files with 3 additions and 0 deletions

View File

@ -84,6 +84,7 @@ class CreateHost(command.CreateCommand):
class UpdateHost(command.UpdateCommand):
"""Update attributes of a host."""
resource = 'host'
json_indent = 4
allow_names = False
log = logging.getLogger(__name__ + '.UpdateHost')

View File

@ -50,6 +50,7 @@ class ShowLease(command.ShowCommand):
class CreateLease(command.CreateCommand):
"""Create a lease."""
resource = 'lease'
json_indent = 4
log = logging.getLogger(__name__ + '.CreateLease')
default_start = datetime.datetime.utcnow()
default_end = default_start + datetime.timedelta(days=1)
@ -277,6 +278,7 @@ class CreateLease(command.CreateCommand):
class UpdateLease(command.UpdateCommand):
"""Update a lease."""
resource = 'lease'
json_indent = 4
log = logging.getLogger(__name__ + '.UpdateLease')
def get_parser(self, prog_name):