From d2e3aaa8698982c564bb4d18d056983223c95884 Mon Sep 17 00:00:00 2001 From: ccremers Date: Tue, 8 Aug 2006 14:03:00 +0000 Subject: [PATCH] - Well we really don't need that anymore, the problem is solved. --- gui/bare.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 gui/bare.py diff --git a/gui/bare.py b/gui/bare.py deleted file mode 100755 index 7067021..0000000 --- a/gui/bare.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/python - -import wx - -class App(wx.App): - - def OnInit(self): - frame = wx.Frame(parent=None, title='Bare') - frame.Show(1) - return True - -app = App() -app.MainLoop() -