Skip to content

Commit 3c50315

Browse files
author
Brian Flores
committed
fix observations
1 parent cd06986 commit 3c50315

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

SoftLayer/CLI/image/list.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ def cli(env, name, public):
3030
images.append(image)
3131

3232
table = formatting.Table(['Id', 'Name', 'Type', 'Visibility', 'Account', 'OS', 'Created', 'Notes'])
33+
table.align['OS'] = 'l'
34+
table.align['Notes'] = 'l'
3335

3436
images = [image for image in images if not image['parentId']]
3537
for image in images:
@@ -51,7 +53,7 @@ def cli(env, name, public):
5153
visibility,
5254
image.get('accountId', formatting.blank()),
5355
operative_system,
54-
image.get('createDate', formatting.blank()),
56+
utils.clean_time(image.get('createDate', formatting.blank())),
5557
image.get('note', formatting.blank()),
5658
])
5759

0 commit comments

Comments
 (0)