Skip to content

Commit 64e30b2

Browse files
JiriBilekearlephilhower
authored andcommitted
Fix the changed structure of the input file (#5891)
The input file containing certificates has changed.
1 parent 68bcc41 commit 64e30b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
csvReader = csv.reader(StringIO(csvData))
3131
for row in csvReader:
3232
names.append(row[0]+":"+row[1]+":"+row[2])
33-
pems.append(row[28])
33+
pems.append(row[30])
3434
del names[0] # Remove headers
3535
del pems[0] # Remove headers
3636

0 commit comments

Comments
 (0)