Merge "Align json indents"
This commit is contained in:
@@ -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')
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user