diff options
Diffstat (limited to 'webmap-download')
-rwxr-xr-x | webmap-download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webmap-download b/webmap-download index 4eaac9d..2724951 100755 --- a/webmap-download +++ b/webmap-download @@ -101,7 +101,7 @@ def download(url, dest, dir_fd=None, headers={}, session=requests, progress=None chunk_size = len(chunk) if pbar is not None: pbar.update(chunk_size) - size = size + chunk_size + size += chunk_size if max_size is not None and size > max_size: raise Exception(f'Payload exceeds max-size ({max_size})') fp.write(chunk) |