X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/578b389d6ec025acc887d4648df20a366f43882d..e0269b2e2a237e211b2dae7efa2731151f239560:/wxPython/wx/py/PyCrust.py?ds=sidebyside diff --git a/wxPython/wx/py/PyCrust.py b/wxPython/wx/py/PyCrust.py index 4bd5637050..ce961a8d07 100644 --- a/wxPython/wx/py/PyCrust.py +++ b/wxPython/wx/py/PyCrust.py @@ -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)