We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e0b5ab + 8809919 commit 546b69aCopy full SHA for 546b69a
1 file changed
SoftLayer/CLI/block/subnets/list.py
@@ -10,7 +10,6 @@
10
11
COLUMNS = [
12
'id',
13
- 'createDate',
14
'networkIdentifier',
15
'cidr'
16
]
@@ -33,7 +32,6 @@ def cli(env, access_id):
33
32
table = formatting.Table(COLUMNS)
34
for subnet in subnets:
35
row = ["{0}".format(subnet['id']),
36
- "{0}".format(subnet['createDate']),
37
"{0}".format(subnet['networkIdentifier']),
38
"{0}".format(subnet['cidr'])]
39
table.add_row(row)
0 commit comments