diff --git a/compiler/datasheet/datasheet.py b/compiler/datasheet/datasheet.py index beded426..144f1968 100644 --- a/compiler/datasheet/datasheet.py +++ b/compiler/datasheet/datasheet.py @@ -33,8 +33,8 @@ class datasheet(): if OPTS.check_lvsdrc: - DRC = total_drc_errors - LVS = total_lvs_errors + DRC = str(total_drc_errors) + ' errors' + LVS = str(total_lvs_errors) + ' errors' PEX = 'n/a' else: DRC = 'skipped' @@ -43,8 +43,8 @@ class datasheet(): self.html +='
'+ self.name + '.html' + '
' - self.html +=''+ 'DRC: ' + str(DRC) + ' errors'+'
' - self.html +=''+ 'LVS: ' + str(LVS) + ' errors'+'
' + self.html +=''+ 'DRC: ' + str(DRC) + '
' + self.html +=''+ 'LVS: ' + str(LVS) + '
' self.html +='Ports and Configuration (DEBUG)
' self.html += in_out(self.io,table_id='data').__html__().replace('<','<').replace('"','"').replace('>',">")