Skip to content

Commit aeefd4d

Browse files
committed
fix indentation
1 parent b6fb468 commit aeefd4d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

custom-domain/dstack-ingress/scripts/certman.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,9 @@ def _build_certbot_command(self, action: str, domain: str, email: str) -> List[s
288288
if action == "certonly":
289289
base_cmd.extend(["--agree-tos", "--no-eff-email",
290290
"--email", email, "-d", domain])
291-
alias_domain = os.environ.get("ALIAS_DOMAIN", "").strip()
292-
if alias_domain:
293-
base_cmd.extend(["--cert-name", domain, "--expand", "-d", alias_domain])
291+
alias_domain = os.environ.get("ALIAS_DOMAIN", "").strip()
292+
if alias_domain:
293+
base_cmd.extend(["--cert-name", domain, "--expand", "-d", alias_domain])
294294
if os.environ.get("CERTBOT_STAGING", "false") == "true":
295295
base_cmd.extend(["--staging"])
296296

0 commit comments

Comments
 (0)