X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/578b389d6ec025acc887d4648df20a366f43882d..fdde476d53dcdb03bebd8ead8cea2c377fc3567d:/wxPython/wx/py/PyWrap.py?ds=sidebyside diff --git a/wxPython/wx/py/PyWrap.py b/wxPython/wx/py/PyWrap.py index 333ad8d064..99a91f1833 100644 --- a/wxPython/wx/py/PyWrap.py +++ b/wxPython/wx/py/PyWrap.py @@ -5,14 +5,15 @@ __author__ = "Patrick K. O'Brien " __cvsid__ = "$Id$" __revision__ = "$Revision$"[11:-2] +import wx +from wx import py + import os import sys -import wx -from wx.py.crust import CrustFrame def wrap(app): wx.InitAllImageHandlers() - frame = CrustFrame() + frame = py.crust.CrustFrame() frame.SetSize((750, 525)) frame.Show(True) frame.shell.interp.locals['app'] = app