There was an error while loading. Please reload this page.
1 parent 6afc339 commit 0979681Copy full SHA for 0979681
1 file changed
docker-qgis/qfc_worker/utils.py
@@ -418,6 +418,8 @@ def download_project(
418
working_dir = destination.joinpath("files")
419
working_dir.mkdir(parents=True)
420
421
+ logging.info(f"Downloading project files to {working_dir}…")
422
+
423
client = sdk.Client()
424
files = client.list_remote_files(project_id)
425
@@ -478,7 +480,7 @@ def upload_project(project_id: str, project_dir: Path) -> None:
478
480
show_progress=False,
479
481
)
482
- logging.info("Uploading packaged project files finished!")
483
+ logging.info("Uploading project files finished!")
484
485
486
def list_local_files(project_id: str, project_dir: Path):
0 commit comments