Skip to content

Commit 16761bc

Browse files
author
Seth Schoen
committed
Fix lint line-too-long complaint
1 parent beeb65d commit 16761bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

letsencrypt/le_util.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,10 @@ def enforce_domain_sanity(domain):
322322
# being FQDNs) because hope springs eternal on this point
323323
try:
324324
socket.inet_aton(domain)
325-
raise errors.ConfigurationError("Requested name {0} is an IP address. The Let's Encrypt certificate authority will not issue certificates for a bare IP address.".format(domain))
325+
raise errors.ConfigurationError(
326+
"Requested name {0} is an IP address. The Let's Encrypt "
327+
"certificate authority will not issue certificates for a "
328+
"bare IP address.".format(domain))
326329
except socket.error:
327330
# It wasn't an IP address, so that's good
328331
pass

0 commit comments

Comments
 (0)