1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-20 10:24:18 +03:00

Fix the changed structure of the input file (#5891)

The input file containing certificates has changed.
This commit is contained in:
Jiri Bilek
2019-03-18 23:15:59 +01:00
committed by Earle F. Philhower, III
parent 68bcc41429
commit 64e30b270b

View File

@ -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