Skip to content

Commit 6e4f095

Browse files
fixes #25 - volume count output didn't have count interpolated in it
1 parent 29d4cad commit 6e4f095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rest_api/list_volumes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def disp_vol(cluster: str, svm_name: str, headers_inc: str):
5151
row = [vol]
5252
tab.add_row(row)
5353
tab.set_cols_align(['c'])
54-
print("Number of Volumes for this Storage Tenant:{}")
54+
print("Number of Volumes for this Storage Tenant: {}".format(ctr))
5555
setdisplay = tab.draw()
5656
print(setdisplay)
5757

0 commit comments

Comments
 (0)