Configtool: don't use deprecated wxPySimpleApp().

A really simple fix :-)
This commit is contained in:
jbernardis 2015-02-25 19:07:36 -05:00 committed by Markus Hitter
parent 9f74d315d0
commit d077ae6e9d
1 changed files with 1 additions and 1 deletions

View File

@ -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()