Mercurial > traipse_dev
comparison rollback.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 |
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 os.system(HG + " rollback") | |
9 os.system(HG + " revert --all") | |
10 print "Since you reverted, I am guessing there are issues with the last update" | |
11 print "PLEASE notify me on either the openrpg.com boards, or by email" | |
12 print "digitalxero@gmail.com" | |
13 print "You can continue using your rolled back version by launching openrpg from" | |
14 print "the command line with the command: OpenRPG*.py -n" | |
15 print "the -n tells the system not to update, it will still run the downloader" | |
16 print "but it will not change your files" | |
17 raw_input("press <enter> key to terminate program") |