Skip to content

Commit 9b23143

Browse files
committed
minor change
1 parent 98eb7db commit 9b23143

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Pure_Create_Volume.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ def main():
130130
print(json.dumps(jsonData, sort_keys=False, indent=4))
131131

132132

133-
volname = (jsonData['name'])
134-
volsize = (jsonData['size'])
133+
name = (jsonData['name'])
134+
size = (jsonData['size'])
135135
cdate = (jsonData['created'])
136136

137137
c1 = cdate[0:10]
@@ -141,7 +141,7 @@ def main():
141141
created = strftime('%d/%m/%Y %H:%M:%S', c4)
142142

143143
print('{0:20} {1:>20} {2:20}'.format('Name', 'Size', 'Created'))
144-
print('{0:20} {1:20} {2:20}'.format(volname, volsize, created))
144+
print('{0:20} {1:20} {2:20}'.format(name, size, created))
145145

146146
# Close API session
147147
array.invalidate_cookie()

0 commit comments

Comments
 (0)