From da3c3dab1c730daca0d0b69318e6197956ccf254 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Fri, 3 Jul 2020 15:40:25 +0200 Subject: [PATCH] @gtardif @rumpl Use %q instead of \"%s\" Co-authored-by: Djordje Lukic --- azure/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/backend.go b/azure/backend.go index 22484f15..25ff9809 100644 --- a/azure/backend.go +++ b/azure/backend.go @@ -267,7 +267,7 @@ func (cs *aciContainerService) Logs(ctx context.Context, containerName string, r func (cs *aciContainerService) Delete(ctx context.Context, containerID string, _ bool) error { groupName, containerName := getGroupAndContainerName(containerID) if groupName != containerID { - return errors.New(fmt.Sprintf(`cannot delete service "%s" from compose app "%s", you must delete the entire compose app with docker compose down`, containerName, groupName)) + return errors.New(fmt.Sprintf("cannot delete service %q from compose app %q, you must delete the entire compose app with docker compose down", containerName, groupName)) } cg, err := deleteACIContainerGroup(ctx, cs.ctx, groupName) if err != nil {