We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9db74 commit 8809919Copy full SHA for 8809919
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