We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5336f2d commit dc93067Copy full SHA for dc93067
1 file changed
src/qfieldcloud_sdk/sdk.py
@@ -580,9 +580,13 @@ def download_file(
580
chunk = f.read(8192)
581
if file_hash.hexdigest() == remote_md5sum:
582
if show_progress:
583
- print(f"{remote_filename}: Already present locally. Download skipped.")
+ print(
584
+ f"{remote_filename}: Already present locally. Download skipped."
585
+ )
586
else:
- logging.info(f'Skipping downloading file "{remote_filename}" because it is already present locally')
587
+ logging.info(
588
+ f'Skipping downloading file "{remote_filename}" because it is already present locally'
589
590
return
591
592
if download_type == FileTransferType.PROJECT:
0 commit comments