Skip to content

Commit

Permalink
Remove naughty comma
Browse files Browse the repository at this point in the history
Fix #1114.
  • Loading branch information
liZe committed May 15, 2020
1 parent 68f4f53 commit dc443ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weasyprint/formatting_structure/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ def set_borders(box, x, y, w, h):
# the correct widths on each box. The actual border grid will be
# painted separately.
def set_transparent_border(box, side, twice_width):
box.style['border_%s_style' % side] = 'solid',
box.style['border_%s_style' % side] = 'solid'
box.style['border_%s_width' % side] = twice_width / 2
box.style['border_%s_color' % side] = transparent

Expand Down

0 comments on commit dc443ab

Please sign in to comment.