From d077ae6e9db5e65f12b5293dab132fdc6869a3fa Mon Sep 17 00:00:00 2001 From: jbernardis Date: Wed, 25 Feb 2015 19:07:36 -0500 Subject: [PATCH] Configtool: don't use deprecated wxPySimpleApp(). A really simple fix :-) --- configtool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configtool.py b/configtool.py index a4ff048..7ae9f3a 100755 --- a/configtool.py +++ b/configtool.py @@ -492,7 +492,7 @@ class ConfigFrame(wx.Frame): if __name__ == '__main__': - app = wx.PySimpleApp() + app = wx.App(False) frame = ConfigFrame() frame.Show(True) app.MainLoop()