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 393e70c commit 8277090Copy full SHA for 8277090
SoftLayer/CLI/vlan/detail.py
@@ -51,7 +51,7 @@ def cli(env, identifier, no_vs, no_hardware):
51
subnet_table.add_row(['usable ips', subnet.get('usableIpAddressCount')])
52
subnets.append(subnet_table)
53
54
- table.add_row(['subnets', subnets])
+ table.add_row(['subnets', *subnets])
55
56
server_columns = ['hostname', 'domain', 'public_ip', 'private_ip']
57
@@ -63,7 +63,7 @@ def cli(env, identifier, no_vs, no_hardware):
63
vsi.get('domain'),
64
vsi.get('primaryIpAddress'),
65
vsi.get('primaryBackendIpAddress')])
66
- table.add_row(['vs', vs_table])
+ table.add_row(['vs', *vs_table])
67
else:
68
table.add_row(['vs', 'none'])
69
@@ -75,7 +75,7 @@ def cli(env, identifier, no_vs, no_hardware):
75
hardware.get('domain'),
76
hardware.get('primaryIpAddress'),
77
hardware.get('primaryBackendIpAddress')])
78
- table.add_row(['hardware', hw_table])
+ table.add_row(['hardware', *hw_table])
79
80
table.add_row(['hardware', 'none'])
81
0 commit comments