Fix missing quotation mark in BOM plugin

Fixes https://gitlab.com/kicad/code/kicad/-/issues/13685
This commit is contained in:
Ian McInerney 2023-01-27 21:46:53 +00:00
parent 9ad2e9f25d
commit a91d2c21b8
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ html = html.replace('<!--COMPCOUNT-->', "<b>Component Count:</b>" + \
row = "<tr><th style='width:640px'>Ref</th>" + "<th>Qnty</th>"
row += "<th>Value</th>" + "<th>Part</th>" + "<th>Footprint</th>"
row += "<th>Description</th>" + "<th>Vendor</th> + "<th>DNP</th></tr>"
row += "<th>Description</th>" + "<th>Vendor</th>" + "<th>DNP</th></tr>"
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")