Commit 7b9f6e2a authored by Vincent Pelletier's avatar Vincent Pelletier

cli: Fix typo in updater.

parent 14f3faf0
...@@ -807,7 +807,7 @@ def updater(argv=None, until=utils.until): ...@@ -807,7 +807,7 @@ def updater(argv=None, until=utils.until):
with open(args.crl, 'rb') as crl_file: with open(args.crl, 'rb') as crl_file:
next_deadline = min( next_deadline = min(
next_deadline, next_deadline,
utils.load_crl(crli_file.read(), ca_crt_list).next_update, utils.load_crl(crl_file.read(), ca_crt_list).next_update,
) )
if args.crt: if args.crt:
crt_pem, key_pem, key_path = utils.getKeyPair(args.crt, args.key) crt_pem, key_pem, key_path = utils.getKeyPair(args.crt, args.key)
......
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