From 80e963c90e6399cdd9fd6a6ccbc56b374be17221 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 18 Apr 2022 13:50:30 -0300 Subject: [PATCH] Changed Digi-Key server from Portugal to US --- kibot/bom/xlsx_writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/bom/xlsx_writer.py b/kibot/bom/xlsx_writer.py index b4f5662d..5513d5ef 100644 --- a/kibot/bom/xlsx_writer.py +++ b/kibot/bom/xlsx_writer.py @@ -792,7 +792,7 @@ def write_xlsx(filename, groups, col_fields, head_names, cfg): worksheet.write_url(row_count, i, datasheet, fmt, cell) # A link to Digi-Key? elif link_digikey and col_fields[i] in link_digikey: - url = 'https://www.digikey.pt/products/en?keywords=' + cell + url = 'https://www.digikey.com/products/en?keywords=' + cell worksheet.write_url(row_count, i, url, fmt, cell) else: worksheet.write_string(row_count, i, cell, fmt)