Unify with changed push to "staging."

This commit is contained in:
Marshall T. Vandegrift 2009-01-10 00:36:42 -05:00
parent 0815098cf8
commit 9ed24c79f0

View File

@ -806,7 +806,8 @@ class Processor(Parser):
break break
else: else:
faces.append('serif') faces.append('serif')
setting += 'font-family:%s;'% ', '.join(faces) family = ', '.join(faces)
setting += 'font-family: %s;' % family
color = font.attrib.pop('color', None) color = font.attrib.pop('color', None)
if color is not None: if color is not None:
setting += 'color:%s'%color setting += 'color:%s'%color