Skip to content

Commit

Permalink
fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arykalin committed Nov 18, 2019
1 parent d57711b commit e23c136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/venafi_certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def _check_certificate_validity(self, cert, validate):
elif isinstance(e, x509.general_name.IPAddress):
ips.append(e.value.exploded)
if self.ip_addresses and sorted(self.ip_addresses) != sorted(ips):
self.changed_message.append("IP addresses in request: %s and in "
self.changed_message.append("IP address in request: %s and in"
"certificate: %s are different"
% (sorted(self.ip_addresses), ips))
self.changed_message.append("CN is %s" % cn)
Expand Down

0 comments on commit e23c136

Please sign in to comment.