mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
add missing colon
This commit is contained in:
parent
76f449f650
commit
cb2040a3ac
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ def is_hostname_sane(hostname):
|
|||
"""
|
||||
import string as s
|
||||
allowed = s.ascii_letters + s.digits + "-." # hostnames & IPv4
|
||||
if all([c in allowed for c in hostname])
|
||||
if all([c in allowed for c in hostname]):
|
||||
return True
|
||||
|
||||
if not allow_raw_ipv6_server: return False
|
||||
|
|
|
|||
Loading…
Reference in a new issue