File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ def build(ctx):
199
199
print ("Dist folder:" )
200
200
for fname in sorted (os .listdir (dist_dir )):
201
201
s = os .stat (os .path .join (dist_dir , fname )).st_size
202
- print (" {:0.0f} KiB {}" .format (s / 2 ** 10 , fname ))
202
+ print (" {:0.0f} KiB {}" .format (s / 2 ** 10 , fname ))
203
203
if sys .platform .startswith ("win" ):
204
204
print ("Note that the exes for Linux/OSX are not chmodded properly!" )
205
205
@@ -214,7 +214,7 @@ def release(ctx):
214
214
print ("This is what you are about to upload:" )
215
215
for fname in sorted (os .listdir (dist_dir )):
216
216
s = os .stat (os .path .join (dist_dir , fname )).st_size
217
- print (" {:0.0f} KiB {}" .format (s / 2 ** 10 , fname ))
217
+ print (" {:0.0f} KiB {}" .format (s / 2 ** 10 , fname ))
218
218
219
219
while True :
220
220
x = input ("Are you sure you want to upload now? [Y/N]: " )
You can’t perform that action at this time.
0 commit comments