8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02bc02 commit e636a65Copy full SHA for e636a65
libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py
@@ -24,7 +24,7 @@
24
# Mozilla's URL for the CSV file with included PEM certs
25
mozurl = "https://ccadb-public.secure.force.com/mozilla/IncludedCACertificateReportPEMCSV"
26
27
-# Load the manes[] and pems[] array from the URL
+# Load the names[] and pems[] array from the URL
28
names = []
29
pems = []
30
response = urlopen(mozurl)
@@ -35,7 +35,7 @@
35
csvReader = csv.reader(csvFile)
36
for row in csvReader:
37
names.append(row[0]+":"+row[1]+":"+row[2])
38
- pems.append(row[30])
+ pems.append(row[32])
39
del names[0] # Remove headers
40
del pems[0] # Remove headers
41
0 commit comments