Mercurial > traipse_dev
comparison start_developer.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 import pyver | |
7 pyver.checkPyVersion() | |
8 | |
9 | |
10 for key in sys.modules.keys(): | |
11 if 'orpg' in key: | |
12 del sys.modules[key] | |
13 | |
14 from orpg.orpg_wx import * | |
15 import orpg.main | |
16 | |
17 if WXLOADED: | |
18 mainapp = orpg.main.orpgApp(0) | |
19 mainapp.MainLoop() | |
20 else: | |
21 print "You really really need wx!" |