Mercurial > traipse_dev
view start_tester.py @ 72:8bc955faf819 ornery-dev
Fixing a few mistakes from the last update. When Controls is finished I will be happy because users won't miss an file change due to these small updates.
author | sirebral |
---|---|
date | Thu, 20 Aug 2009 03:45:45 -0500 |
parents | 0aeee1992423 |
children |
line wrap: on
line source
#!/usr/bin/env python import sys import os HG = os.environ["HG"] import pyver pyver.checkPyVersion() from orpg.orpg_wx import * import upmana.updatemana app = upmana.updatemana.updateApp(0) app.MainLoop() for key in sys.modules.keys(): if 'orpg' in key: del sys.modules[key] from orpg.orpg_wx import * import orpg.main if WXLOADED: mainapp = orpg.main.orpgApp(0) mainapp.MainLoop() else: print "You really really need wx!"