Skip to content

Commit

Permalink
Fix lint line-too-long complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Schoen committed Feb 16, 2016
1 parent beeb65d commit 16761bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion letsencrypt/le_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,10 @@ def enforce_domain_sanity(domain):
# being FQDNs) because hope springs eternal on this point
try:
socket.inet_aton(domain)
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))
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))
except socket.error:
# It wasn't an IP address, so that's good
pass
Expand Down

0 comments on commit 16761bc

Please sign in to comment.