1
0
Fork 0
mirror of synced 2024-05-29 08:29:55 +12:00

Deleted commented line

This commit is contained in:
Ali Parlakci 2018-08-13 16:00:21 +03:00
parent 1a41dc6061
commit 47a07be1c8

View file

@ -23,9 +23,7 @@ def dlProgress(count, blockSize, totalSize):
downloadedMbs = int(count*blockSize*(10**(-6)))
fileSize = int(totalSize*(10**(-6)))
sys.stdout.write("{}Mb/{}Mb".format(downloadedMbs,fileSize))
sys.stdout.write("\r")
# sys.stdout.write("\b"*len("\r{}Mb/{}Mb".format(downloadedMbs,fileSize)))
sys.stdout.write("{}Mb/{}Mb\r".format(downloadedMbs,fileSize))
sys.stdout.flush()
def getExtension(link):