X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/578b389d6ec025acc887d4648df20a366f43882d..8ddef5ee0ccd82c6a3de38c2811067c16ee2be22:/wxPython/wx/py/PyAlaModeTest.py?ds=inline diff --git a/wxPython/wx/py/PyAlaModeTest.py b/wxPython/wx/py/PyAlaModeTest.py index 3ae9cb600a..d1c02e0907 100755 --- a/wxPython/wx/py/PyAlaModeTest.py +++ b/wxPython/wx/py/PyAlaModeTest.py @@ -5,12 +5,11 @@ __cvsid__ = "$Id$" __revision__ = "$Revision$"[11:-2] import wx +from wx import py import os import sys -import editor - class App(wx.App): """PyAlaModeTest standalone application.""" @@ -20,7 +19,7 @@ class App(wx.App): def OnInit(self): wx.InitAllImageHandlers() - self.frame = editor.EditorShellNotebookFrame(filename=self.filename) + self.frame = py.editor.EditorShellNotebookFrame(filename=self.filename) self.frame.Show() self.SetTopWindow(self.frame) return True