From 4b730752ac334a409ae450f14db7d2d849affc77 Mon Sep 17 00:00:00 2001 From: Jiri Bilek Date: Mon, 18 Mar 2019 13:53:05 +0100 Subject: [PATCH] Fix the changed structure of the input file 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 049df11a28..13c77ccf52 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 @@ 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