File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,17 @@ def cli(env, identifier):
37
37
inbound = '-'
38
38
table .add_row (['Inbound Usage' , inbound ])
39
39
if bandwidths ['hardware' ] != []:
40
- table .add_row (['hardware' , _bw_table (bandwidths ['hardware' ])])
40
+ table .add_row (['hardware' , * ( _bw_table (bandwidths ['hardware' ]) )])
41
41
else :
42
42
table .add_row (['hardware' , 'Not Found' ])
43
43
44
44
if bandwidths ['virtualGuests' ] != []:
45
- table .add_row (['virtualGuests' , _virtual_table (bandwidths ['virtualGuests' ])])
45
+ table .add_row (['virtualGuests' , * ( _virtual_table (bandwidths ['virtualGuests' ]) )])
46
46
else :
47
47
table .add_row (['virtualGuests' , 'Not Found' ])
48
48
49
49
if bandwidths ['bareMetalInstances' ] != []:
50
- table .add_row (['Netscaler' , _bw_table (bandwidths ['bareMetalInstances' ])])
50
+ table .add_row (['Netscaler' , * ( _bw_table (bandwidths ['bareMetalInstances' ]) )])
51
51
else :
52
52
table .add_row (['Netscaler' , 'Not Found' ])
53
53
You can’t perform that action at this time.
0 commit comments