From a778ff8903b56bd56a4d7091834257e5c20e5944 Mon Sep 17 00:00:00 2001 From: Chuan Liu Date: Tue, 21 Dec 2021 09:45:56 -0800 Subject: [PATCH] Fix the storage string format. Co-authored-by: Andrej Shadura --- azure/public.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/public.go b/azure/public.go index 038c2f96..21cef5fe 100644 --- a/azure/public.go +++ b/azure/public.go @@ -51,7 +51,7 @@ func NewPublishedStorage(accountName, accountKey, container, prefix string) (*Pu // String func (storage *PublishedStorage) String() string { - return fmt.Sprintf("Azure :%s/%s", storage.container, storage.prefix) + return fmt.Sprintf("Azure: %s/%s", storage.container, storage.prefix) } // MkDir creates directory recursively under public path