Mercurial > traipse_dev
comparison start_release.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 | |
12 os.system(HG + ' pull "http://hg.assembla.com/traipse"') | |
13 os.system(HG + " update -C grumpy-goblin") | |
14 | |
15 for key in sys.modules.keys(): | |
16 if 'orpg' in key: | |
17 del sys.modules[key] | |
18 | |
19 from orpg.orpg_wx import * | |
20 import orpg.main | |
21 | |
22 if WXLOADED: | |
23 mainapp = orpg.main.orpgApp(0) | |
24 mainapp.MainLoop() | |
25 else: | |
26 print "You really really need wx!" |