소스 검색

Merge pull request #558 from docker/warning_msg_typo

Removed space before :
Guillaume Tardif 5 년 전
부모
커밋
92a0c60095
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      aci/convert/registry_credentials.go

+ 1 - 1
aci/convert/registry_credentials.go

@@ -70,7 +70,7 @@ func getRegistryCredentials(project compose.Project, helper registryHelper) ([]c
 	for _, registry := range acrRegistries {
 		err := helper.autoLoginAcr(registry)
 		if err != nil {
-			fmt.Printf("WARNING : %v\n", err)
+			fmt.Printf("WARNING: %v\n", err)
 			fmt.Printf("Could not automatically login to %s from your Azure login. Assuming you already logged in to the ACR registry\n", registry)
 		}
 	}