Merge "Align json indents"

This commit is contained in:
Zuul
2018-01-23 09:35:55 +00:00
committed by Gerrit Code Review
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):