]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/py/PyWrap.py
Fixed typo
[wxWidgets.git] / wxPython / wx / py / PyWrap.py
index 4911be1ae174931d517d32e16b7ff3d47e48316b..333ad8d064e1827897e22ed5a955a918c1e70e7e 100644 (file)
@@ -8,24 +8,16 @@ __revision__ = "$Revision$"[11:-2]
 import os
 import sys
 import wx
-from crust import CrustFrame as Frame
-
-try:
-    True
-except NameError:
-    True = 1==1
-    False = 1==0
-
+from wx.py.crust import CrustFrame
 
 def wrap(app):
     wx.InitAllImageHandlers()
-    frame = Frame()
+    frame = CrustFrame()
     frame.SetSize((750, 525))
     frame.Show(True)
     frame.shell.interp.locals['app'] = app
     app.MainLoop()
 
-
 def main(modulename=None):
     sys.path.insert(0, os.curdir)
     if not modulename:
@@ -46,11 +38,10 @@ def main(modulename=None):
         except (NameError, TypeError):
             pass
     if App is None:
-        print "No App class found."
+        print "No App class was found."
         raise SystemExit
     app = App()
     wrap(app)
 
-
 if __name__ == '__main__':
     main()