Skip to content

Commit 8809919

Browse files
author
Brian Flores
committed
remove create date column
1 parent cd9db74 commit 8809919

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)