fu indents
This commit is contained in:
parent
e465469578
commit
b5c142ba80
@ -35,17 +35,21 @@ def urldownload(confurl = ""):
|
|||||||
|
|
||||||
file_size_dl = 0
|
file_size_dl = 0
|
||||||
block_sz = 8192
|
block_sz = 8192
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
buffer = u.read(block_sz)
|
buffer = u.read(block_sz)
|
||||||
if not buffer:
|
if not buffer:
|
||||||
break
|
break
|
||||||
|
|
||||||
file_size_dl += len(buffer)
|
file_size_dl += len(buffer)
|
||||||
f.write(buffer)
|
f.write(buffer)
|
||||||
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
|
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
|
||||||
status = status + chr(8)*(len(status)+1)
|
status = status + chr(8)*(len(status)+1)
|
||||||
print status,
|
print status,
|
||||||
|
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
|
||||||
def confdownload():
|
def confdownload():
|
||||||
urldownload(confurl = vimrcurl)
|
urldownload(confurl = vimrcurl)
|
||||||
urldownload(confurl = zshrcurl)
|
urldownload(confurl = zshrcurl)
|
||||||
|
Loading…
Reference in New Issue
Block a user