From 290deaaf7c6e43dfbb1e0b6b0d3c85cc17befd21 Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Thu, 24 Feb 2022 07:59:33 +0100 Subject: [PATCH] typo --- pyinfra/storage/adapters/azure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyinfra/storage/adapters/azure.py b/pyinfra/storage/adapters/azure.py index 8308262..9576d03 100644 --- a/pyinfra/storage/adapters/azure.py +++ b/pyinfra/storage/adapters/azure.py @@ -53,7 +53,7 @@ class AzureStorageAdapter(StorageAdapter): container_client = self.__provide_container_client(bucket_name) blobs = container_client.list_blobs(bucket_name) for blob in blobs: - logger.debug(f"Downlaoding '{blob.name}'...") + logger.debug(f"Downloading '{blob.name}'...") blob_client = container_client.get_blob_client(blob) blob_data = blob_client.download_blob() data = blob_data.readall()