Skip to content

Commit e807fd6

Browse files
Update pools.py
1 parent a879a69 commit e807fd6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SoftLayer/CLI/bandwidth/pools.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ def cli(env):
6969
else:
7070
cost = "$0.0"
7171

72-
table.add_row([id_bandwidth, name, region, servers, allocation, current, projected, cost])
72+
deletion = utils.clean_time(item.get('endDate'))
73+
if deletion == '':
74+
deletion = formatting.blank()
75+
76+
table.add_row([id_bandwidth, name, region, servers, allocation, current, projected, cost, deletion])
7377

7478
end_m = time.perf_counter()
7579
LOGGER.debug('Total API Call time %s', end_m - start_m)

0 commit comments

Comments
 (0)