Skip to content

Commit

Permalink
Passing builder to SvgBezierPath constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
michielkauwatjoe committed Jan 12, 2021
1 parent 57401d6 commit 5a01cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/pagebot/contexts/svgcontext/svgcontext.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def newPath(self):
>>> isinstance(path, Path)
True
"""
self._bezierpath = SvgBezierPath()
self._bezierpath = SvgBezierPath(self.b)
return self._bezierpath

def moveTo(self, p):
Expand Down

0 comments on commit 5a01cd6

Please sign in to comment.