diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-12-11 11:32:13 +0100 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-12-11 11:32:33 +0100 |
commit | 106d091e80f609802d3f6dcc3512525458900042 (patch) | |
tree | 60aadeec4448f4d2a897df40bb37d63ccb3056da | |
parent | f83ae7816b64ff23fbef602d7ade3fd00b57e5aa (diff) |
Do not use 0% as the starting point in resumed downloads (closes #40)
-rwxr-xr-x | youtube-dl | 4 |
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: |