From c1e5aa8caa724b4b85940de18d93fe4ca490222e Mon Sep 17 00:00:00 2001 From: mingrammer Date: Sat, 29 Feb 2020 21:31:52 +0900 Subject: [PATCH] fix: make file prefixes uppercase --- config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index 5c2dd82e..6a78051a 100644 --- a/config.py +++ b/config.py @@ -26,9 +26,9 @@ CMD_SVG2PNG_IM_OPTS = ("-shave", "25%x25%", "-resize", "256x256!") FILE_PREFIXES = { "onprem": (), - "aws": ("amazon-", "aws-"), - "azure": ("azure-",), - "gcp": ("cloud-",), + "aws": ("Amazon-", "AWS-"), + "azure": ("Azure-",), + "gcp": ("Cloud-",), "k8s": (), "alibabacloud": (), "oci": ("OCI-",),