fix: cleanup stdout output

This commit is contained in:
2025-10-27 14:13:53 +01:00
parent 2a9559642b
commit c8640eb035
2 changed files with 5 additions and 5 deletions

2
vm.py
View File

@@ -146,7 +146,7 @@ class VM:
for subdomain in self.subdomains:
if subdomain.get("no-terminate-ssl"):
print("Not terminating TLS for: {}".format(subdomain))
print("Not terminating TLS for: {}".format(subdomain.get("name")))
if type(subdomain) != dict:
raise ValueError("Subdomain must be object containing 'name' ")