X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a47c63ba5155586616d0a5e4d92f446ed512f0cb..e02ecf7c9a400ceba147f08e3359d19de7b8161c:/wxPython/wx/py/PyShell.py?ds=inline

diff --git a/wxPython/wx/py/PyShell.py b/wxPython/wx/py/PyShell.py
index 54cef8a71e..c800dc4d9c 100644
--- a/wxPython/wx/py/PyShell.py
+++ b/wxPython/wx/py/PyShell.py
@@ -18,9 +18,9 @@ class App(wx.App):
 
     def OnInit(self):
         import wx
+        from wx import py
         wx.InitAllImageHandlers()
-        from shell import ShellFrame
-        self.frame = ShellFrame()
+        self.frame = py.shell.ShellFrame()
         self.frame.SetSize((750, 525))
         self.frame.Show()
         self.SetTopWindow(self.frame)