Update summary_log.py

Added more metadata readout
This commit is contained in:
Jamie Hardt
2022-08-17 22:21:26 -07:00
parent 9f8e3cf824
commit c26fa8dd75

View File

@@ -34,9 +34,9 @@ def build_aux_data_field(line: ADRLine):
elif line.adlib: elif line.adlib:
bg_color = 'purple' bg_color = 'purple'
tag_field += "<font backColor=%s textColor=%s fontSize=11>%s</font> " % (bg_color, fg_color, "ADLIB") tag_field += "<font backColor=%s textColor=%s fontSize=11>%s</font> " % (bg_color, fg_color, "ADLIB")
elif line.omitted: elif line.optional:
bg_color = 'green' bg_color = 'green'
tag_field += "<font backColor=%s textColor=%s fontSize=11>%s</font>" % (bg_color, fg_color, "OMITTED") tag_field += "<font backColor=%s textColor=%s fontSize=11>%s</font>" % (bg_color, fg_color, "OPTIONAL")
entries.append(tag_field) entries.append(tag_field)