Commit 9466242b authored by Vincent Pelletier's avatar Vincent Pelletier

caucase.ca: Coding style.

parent 810e7ec2
......@@ -264,8 +264,10 @@ class CertificateAuthority(object):
).digest),
override_limits=override_limits,
)
if requested_amount is not None and \
requested_amount <= self._auto_sign_csr_amount:
if (
requested_amount is not None and
requested_amount <= self._auto_sign_csr_amount
):
# if allowed to sign this certificate automaticaly
self._createCertificate(csr_id, auto_signed=_AUTO_SIGNED_YES)
return csr_id
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment