X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a47c63ba5155586616d0a5e4d92f446ed512f0cb..6f259188505882b44a5a8989fcac7e83c9146f47:/wxPython/wx/py/PyCrust.py diff --git a/wxPython/wx/py/PyCrust.py b/wxPython/wx/py/PyCrust.py index ce961a8d07..b9a222763e 100644 --- a/wxPython/wx/py/PyCrust.py +++ b/wxPython/wx/py/PyCrust.py @@ -13,15 +13,14 @@ __revision__ = "$Revision$"[11:-2] import wx - class App(wx.App): """PyCrust standalone application.""" def OnInit(self): import wx + from wx import py wx.InitAllImageHandlers() - from crust import CrustFrame - self.frame = CrustFrame() + self.frame = py.crust.CrustFrame() self.frame.SetSize((800, 600)) self.frame.Show() self.SetTopWindow(self.frame)