We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98eb7db commit 9b23143Copy full SHA for 9b23143
Pure_Create_Volume.py
@@ -130,8 +130,8 @@ def main():
130
print(json.dumps(jsonData, sort_keys=False, indent=4))
131
132
133
- volname = (jsonData['name'])
134
- volsize = (jsonData['size'])
+ name = (jsonData['name'])
+ size = (jsonData['size'])
135
cdate = (jsonData['created'])
136
137
c1 = cdate[0:10]
@@ -141,7 +141,7 @@ def main():
141
created = strftime('%d/%m/%Y %H:%M:%S', c4)
142
143
print('{0:20} {1:>20} {2:20}'.format('Name', 'Size', 'Created'))
144
- print('{0:20} {1:20} {2:20}'.format(volname, volsize, created))
+ print('{0:20} {1:20} {2:20}'.format(name, size, created))
145
146
# Close API session
147
array.invalidate_cookie()
0 commit comments