mbligh | 4263b06 | 2008-02-21 19:14:43 +0000 | [diff] [blame] | 1 | #!/usr/bin/python -u |
mbligh | 74fc046 | 2007-11-05 20:24:17 +0000 | [diff] [blame] | 2 | |
mbligh | 96cf051 | 2008-04-17 15:25:38 +0000 | [diff] [blame] | 3 | import os, sys |
mbligh | bc98570 | 2007-11-05 20:52:15 +0000 | [diff] [blame] | 4 | |
mbligh | 96cf051 | 2008-04-17 15:25:38 +0000 | [diff] [blame] | 5 | # this is a stub that just execs into parse.py |
6 | mypath = os.path.dirname(os.path.abspath(__file__)) | ||||
7 | parse_py = os.path.join(mypath, "parse.py") | ||||
mbligh | bc98570 | 2007-11-05 20:52:15 +0000 | [diff] [blame] | 8 | |
mbligh | 96cf051 | 2008-04-17 15:25:38 +0000 | [diff] [blame] | 9 | os.execv(parse_py, [parse_py] + sys.argv[1:]) |