Mercurial > traipse_dev
comparison start_server_gui.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 | f24c6e431a15 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4385a7d0efd1 |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 import os | |
4 import sys | |
5 | |
6 HG = os.environ["HG"] | |
7 | |
8 import pyver | |
9 pyver.checkPyVersion() | |
10 | |
11 os.system(HG + ' pull "http://hg.assembla.com/openrpg_rc"') | |
12 os.system(HG + ' update') | |
13 | |
14 from orpg.orpg_wx import * | |
15 | |
16 if WXLOADED: | |
17 import orpg.networking.mplay_server_gui | |
18 app = orpg.networking.mplay_server_gui.ServerGUIApp(0) | |
19 app.MainLoop() |