Skip to content

Commit 546b69a

Browse files
Merge pull request #1716 from BrianSantivanez/issue1715
`slcli block subnets-list` command display an error message
2 parents 0e0b5ab + 8809919 commit 546b69a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

SoftLayer/CLI/block/subnets/list.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
COLUMNS = [
1212
'id',
13-
'createDate',
1413
'networkIdentifier',
1514
'cidr'
1615
]
@@ -33,7 +32,6 @@ def cli(env, access_id):
3332
table = formatting.Table(COLUMNS)
3433
for subnet in subnets:
3534
row = ["{0}".format(subnet['id']),
36-
"{0}".format(subnet['createDate']),
3735
"{0}".format(subnet['networkIdentifier']),
3836
"{0}".format(subnet['cidr'])]
3937
table.add_row(row)

0 commit comments

Comments
 (0)