From 64e30b270bcb8accde0c62d5998fd69907d764b6 Mon Sep 17 00:00:00 2001 From: Jiri Bilek Date: Mon, 18 Mar 2019 23:15:59 +0100 Subject: [PATCH] Fix the changed structure of the input file (#5891) The input file containing certificates has changed. --- .../examples/BearSSL_CertStore/certs-from-mozilla.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py b/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py index 049df11a2..13c77ccf5 100755 --- a/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py +++ b/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py @@ -30,7 +30,7 @@ csvData = response.read() csvReader = csv.reader(StringIO(csvData)) for row in csvReader: names.append(row[0]+":"+row[1]+":"+row[2]) - pems.append(row[28]) + pems.append(row[30]) del names[0] # Remove headers del pems[0] # Remove headers