diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-06-08 00:03:43 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-06-08 00:03:56 +0200 |
commit | a7fd696267b81377ab69b1bcbcc6581fa5fe5a0d (patch) | |
tree | 673b0c04e8e9ed95bcc06bf8f538de7706f81cab /webmap-download | |
parent | 89a61c1b3576f54450f40f54b68819af33a0135a (diff) |
webmap-download*: Use +=.
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) |