mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-24 02:57:09 +00:00
Index bug fixed
This commit is contained in:
parent
cfe59cc00c
commit
e91731d82b
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ for l in fileinput.input(args.r):
|
|||
|
||||
if ((cert is None) and (len(certstring) > 0)):
|
||||
y = re.sub(" ", "", certstring).split('=')
|
||||
a = y[2].split('certificate')[0]
|
||||
a = y[1].split('certificate')[0]
|
||||
try:
|
||||
dercert = binascii.unhexlify(a)
|
||||
except TypeError:
|
||||
|
|
Loading…
Reference in a new issue