From: Robin Dunn Date: Wed, 25 Aug 2004 22:04:29 +0000 (+0000) Subject: Use the right class name for caling __init__ X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f86c9a1ff0e90a14340ccb33ff200b915513892a?ds=inline Use the right class name for caling __init__ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28904 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/grids.py b/wxPython/wx/lib/grids.py index 68c8b03226..5adfc20fce 100644 --- a/wxPython/wx/lib/grids.py +++ b/wxPython/wx/lib/grids.py @@ -201,7 +201,7 @@ class PyGridSizer(wx.PySizer): class PyFlexGridSizer(PyGridSizer): def __init__(self, rows=0, cols=0, hgap=0, vgap=0): - wxGridSizer.__init__(self, rows, cols, hgap, vgap) + PyGridSizer.__init__(self, rows, cols, hgap, vgap) self.rowHeights = [] self.colWidths = [] self.growableRows = []