From ea843d1e68d041eb1b885db9a31269d862c2ee9d Mon Sep 17 00:00:00 2001 From: Erik van Blokland Date: Thu, 20 Oct 2011 15:56:22 +0000 Subject: [PATCH] This reflects the move to pens/printingPens git-svn-id: http://svn.robofab.com/branches/ufo3k@447 b5fa9d6c-a76f-4ffd-b3cb-f825fc41095c --- Lib/robofab/pens/adapterPens.py | 2 +- Lib/robofab/pens/reverseContourPointPen.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/robofab/pens/adapterPens.py b/Lib/robofab/pens/adapterPens.py index 0cd9ae3f7..0d487fc5f 100644 --- a/Lib/robofab/pens/adapterPens.py +++ b/Lib/robofab/pens/adapterPens.py @@ -271,7 +271,7 @@ class GuessSmoothPointPen(AbstractPointPen): if __name__ == "__main__": from fontTools.pens.basePen import _TestPen as PSPen - from robofab.pens.pointPen import PrintingPointPen + from robofab.pens.printingPens import PrintingPointPen segmentPen = PSPen(None) # pen = PointToSegmentPen(SegmentToPointPen(PointToSegmentPen(PSPen(None)))) pen = PointToSegmentPen(SegmentToPointPen(PrintingPointPen())) diff --git a/Lib/robofab/pens/reverseContourPointPen.py b/Lib/robofab/pens/reverseContourPointPen.py index 8ce001b4d..d375a2b80 100755 --- a/Lib/robofab/pens/reverseContourPointPen.py +++ b/Lib/robofab/pens/reverseContourPointPen.py @@ -88,7 +88,7 @@ class ReverseContourPointPen(AbstractPointPen): if __name__ == "__main__": - from robofab.pens.pointPen import PrintingPointPen + from robofab.pens.printingPens import PrintingPointPen pP = PrintingPointPen() rP = ReverseContourPointPen(pP)