Fixed schematic comments expansion

This commit is contained in:
Salvador E. Tropea 2022-03-13 16:36:54 -03:00
parent 4359a538cd
commit 02a942c37b
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class GS(object):
GS.sch_date = GS.expand_text_variables(GS.sch.date)
GS.sch_rev = GS.expand_text_variables(GS.sch.revision)
GS.sch_comp = GS.expand_text_variables(GS.sch.company)
GS.sch_com = map(GS.expand_text_variables, GS.sch.comment)
GS.sch_com = [GS.expand_text_variables(x) for x in GS.sch.comment]
@staticmethod
def format_date(d, fname, what):