From 9077dfdbacf4f1dce4241362dcf839f5e3a2b875 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Sun, 8 Nov 2015 21:46:57 +0200 Subject: [PATCH] Fixed the messages --- letsencrypt/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index c66060d48..23ef8956a 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -1165,16 +1165,16 @@ def _check_config_domain_sanity(domains): # Check if there's a wildcard domain if any(d.startswith("*.") for d in domains): raise errors.ConfigurationError( - "Error: Wildcard domains are not supported") + "Wildcard domains are not supported") # Punycode if any("xn--" in d for d in domains): raise errors.ConfigurationError( - "Error: Punycode domains are not supported") + "Punycode domains are not supported") # FQDN, checks: # Characters used, domain parts < 63 chars, tld > 3 < 6 chars fqdn = re.compile("^((?!-)[A-Za-z0-9-]{1,63}(?