Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Kozea/cairosvg
Browse files Browse the repository at this point in the history
  • Loading branch information
liZe committed Jun 15, 2016
2 parents 2cf87db + d9dccc6 commit ad11b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairosvg/bounding_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def bounding_box_polyline(surface, node):
bounding_box = EMPTY_BOUNDING_BOX
points = []
normalized_points = normalize(node.get('points', ''))
while points:
while normalized_points:
x, y, normalized_points = point(surface, normalized_points)
points.append((x, y))
return extend_bounding_box(bounding_box, points)
Expand Down

0 comments on commit ad11b6e

Please sign in to comment.