]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/py/PyCrust.py
Fixed typo
[wxWidgets.git] / wxPython / wx / py / PyCrust.py
index 4bd56370507b147ba538c59acfded7466829db99..ce961a8d077e8034294a9536266efdc70100ccfa 100644 (file)
@@ -20,9 +20,8 @@ class App(wx.App):
     def OnInit(self):
         import wx
         wx.InitAllImageHandlers()
-        locals = __main__.__dict__
         from crust import CrustFrame
-        self.frame = CrustFrame(locals=locals)
+        self.frame = CrustFrame()
         self.frame.SetSize((800, 600))
         self.frame.Show()
         self.SetTopWindow(self.frame)