summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-12-11 11:32:13 +0100
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-12-11 11:32:33 +0100
commit106d091e80f609802d3f6dcc3512525458900042 (patch)
tree60aadeec4448f4d2a897df40bb37d63ccb3056da
parentf83ae7816b64ff23fbef602d7ade3fd00b57e5aa (diff)
downloadyoutube-dl-106d091e80f609802d3f6dcc3512525458900042.tar.gz
youtube-dl-106d091e80f609802d3f6dcc3512525458900042.tar.xz
youtube-dl-106d091e80f609802d3f6dcc3512525458900042.zip
Do not use 0% as the starting point in resumed downloads (closes #40)
-rwxr-xr-xyoutube-dl4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index a8e3bd36c..22b9eba17 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -606,8 +606,10 @@ class FileDownloader(object):
 			return False
 
 		data_len = data.info().get('Content-length', None)
+		if data_len is not None:
+			data_len = long(data_len) + resume_len
 		data_len_str = self.format_bytes(data_len)
-		byte_counter = 0
+		byte_counter = 0 + resume_len
 		block_size = 1024
 		start = time.time()
 		while True: