X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72797a7da3f02b1b71949d4ea8827529a2c8c7b1..52f52ebc4e0be6a9899d328b08db9eb14629d219:/wxPython/demo/template.py diff --git a/wxPython/demo/template.py b/wxPython/demo/template.py index 9be55905b9..8be058bfee 100644 --- a/wxPython/demo/template.py +++ b/wxPython/demo/template.py @@ -1,12 +1,12 @@ -from wxPython.wx import * +import wx # This module uses the new wx namespace #---------------------------------------------------------------------- -class TestPanel(wxPanel): +class TestPanel(wx.Panel): def __init__(self, parent, log): self.log = log - wxPanel.__init__(self, parent, -1) + wx.Panel.__init__(self, parent, -1) #----------------------------------------------------------------------