From ca40260c8d258dcecda37a1912d27c66f1d71acb Mon Sep 17 00:00:00 2001 From: Werner F Bruhin Date: Sat, 14 Jun 2014 15:13:42 +0200 Subject: [PATCH] - should AttachmentPoint be ControlPoint? --- wx/lib/ogl/drawn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wx/lib/ogl/drawn.py b/wx/lib/ogl/drawn.py index 8e3c5bd3..f1bd598e 100644 --- a/wx/lib/ogl/drawn.py +++ b/wx/lib/ogl/drawn.py @@ -801,6 +801,7 @@ class DrawnShape(RectangleShape): if flags and METAFLAGS_ATTACHMENTS: self.ClearAttachments() for i in range(len(pts)): + # TODO: AttachmentPoint does not excist as per PyLint, what should it be??? self._attachmentPoints.append(AttachmentPoint(i,pts[i][0],pts[i][1])) self._metafiles[self._currentAngle].DrawPolygon(pts, flags)