comparison start_noupdate.py @ 0:4385a7d0efd1 grumpy-goblin

Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
author sirebral
date Tue, 14 Jul 2009 16:41:58 -0500
parents
children 0b79d5dbbe9e
comparison
equal deleted inserted replaced
-1:000000000000 0:4385a7d0efd1
1 #!/usr/bin/env python
2
3 import sys
4 import os
5
6 #HG = os.environ["HG"]
7
8 import pyver
9 pyver.checkPyVersion()
10
11 #os.system(HG + ' pull "http://hg.assembla.com/traipse"')
12
13 for key in sys.modules.keys():
14 if 'orpg' in key:
15 del sys.modules[key]
16
17 from orpg.orpg_wx import *
18 import orpg.main
19
20 if WXLOADED:
21 mainapp = orpg.main.orpgApp(0)
22 mainapp.MainLoop()
23 else:
24 print "You really really need wx!"