diff start_tester.py @ 48:0aeee1992423 traipse_dev

This updates fixes three things. Branch names are now current to your udpate and updates take place before the program starts and minor error in update code (unremarked, removed '.')
author sirebral
date Thu, 06 Aug 2009 04:26:02 -0500
parents c223c1051f4a
children
line wrap: on
line diff
--- a/start_tester.py	Thu Aug 06 03:31:21 2009 -0500
+++ b/start_tester.py	Thu Aug 06 04:26:02 2009 -0500
@@ -8,24 +8,17 @@
 import pyver
 pyver.checkPyVersion()
 
-os.system(HG + ' pull "http://hg.assembla.com/traipse"')
-os.system(HG + ' pull "http://hg.assembla.com/traipse_dev"')
-#os.system(HG + ' pull "http://hg.assembla.com/openrpg"')
-#os.system(HG + ' pull "http://hg.assembla.com/openrpg_dev"')
-
+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 upmana.updatemana
-app = upmana.updatemana.updateApp(0)
-app.MainLoop()
-
 import orpg.main
 
-
 if WXLOADED:
     mainapp = orpg.main.orpgApp(0)
     mainapp.MainLoop()