diff --git a/wxPython/wxPython/lib/PyCrust/PyCrustApp.py b/wxPython/wxPython/lib/PyCrust/PyCrustApp.py index fef1c40ee2..c6b93c7d14 100755 --- a/wxPython/wxPython/lib/PyCrust/PyCrustApp.py +++ b/wxPython/wxPython/lib/PyCrust/PyCrustApp.py @@ -6,12 +6,12 @@ __cvsid__ = "$Id$" __revision__ = "$Revision$"[11:-2] from wxPython.wx import * -from PyCrust.crust import CrustFrame +from crust import CrustFrame class App(wxApp): """PyCrust standalone application.""" - + def OnInit(self): locals = {'__app__': 'PyCrust Standalone Application'} self.crustFrame = CrustFrame(locals=locals) @@ -33,4 +33,4 @@ def main(): if __name__ == '__main__': main() - + diff --git a/wxPython/wxPython/lib/PyCrust/PyFillingApp.py b/wxPython/wxPython/lib/PyCrust/PyFillingApp.py index efdcd6a6de..6869f1aa73 100755 --- a/wxPython/wxPython/lib/PyCrust/PyFillingApp.py +++ b/wxPython/wxPython/lib/PyCrust/PyFillingApp.py @@ -8,7 +8,7 @@ __revision__ = "$Revision$"[11:-2] # We use this object to get more introspection when run standalone. application = None -from PyCrust import filling +import filling # These are imported just to have something interesting to inspect. from PyCrust import crust @@ -32,4 +32,4 @@ def main(): if __name__ == '__main__': main() - + diff --git a/wxPython/wxPython/lib/PyCrust/PyShellApp.py b/wxPython/wxPython/lib/PyCrust/PyShellApp.py index ba39305ada..04568c26f5 100755 --- a/wxPython/wxPython/lib/PyCrust/PyShellApp.py +++ b/wxPython/wxPython/lib/PyCrust/PyShellApp.py @@ -6,12 +6,12 @@ __cvsid__ = "$Id$" __revision__ = "$Revision$"[11:-2] from wxPython.wx import * -from PyCrust.shell import ShellFrame +from shell import ShellFrame class App(wxApp): """PyShell standalone application.""" - + def OnInit(self): locals = {'__app__': 'PyShell Standalone Application'} self.shellFrame = ShellFrame(locals=locals) @@ -33,5 +33,5 @@ def main(): if __name__ == '__main__': main() - - + +