Skip to content

Commit 54ddf9c

Browse files
Merge pull request #1670 from caberos/issue1669
slcli account bandwidth-pools-detail command displays an error with b…
2 parents 846404e + 802ab46 commit 54ddf9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SoftLayer/CLI/account/bandwidth_pools_detail.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ def cli(env, identifier):
3737
inbound = '-'
3838
table.add_row(['Inbound Usage', inbound])
3939
if bandwidths['hardware'] != []:
40-
table.add_row(['hardware', _bw_table(bandwidths['hardware'])])
40+
table.add_row(['hardware', *(_bw_table(bandwidths['hardware']))])
4141
else:
4242
table.add_row(['hardware', 'Not Found'])
4343

4444
if bandwidths['virtualGuests'] != []:
45-
table.add_row(['virtualGuests', _virtual_table(bandwidths['virtualGuests'])])
45+
table.add_row(['virtualGuests', *(_virtual_table(bandwidths['virtualGuests']))])
4646
else:
4747
table.add_row(['virtualGuests', 'Not Found'])
4848

4949
if bandwidths['bareMetalInstances'] != []:
50-
table.add_row(['Netscaler', _bw_table(bandwidths['bareMetalInstances'])])
50+
table.add_row(['Netscaler', *(_bw_table(bandwidths['bareMetalInstances']))])
5151
else:
5252
table.add_row(['Netscaler', 'Not Found'])
5353

0 commit comments

Comments
 (0)