blob: 8379db347d9496f590faa0a4f3b916093c21e093 [file] [log] [blame]
mbligh4263b062008-02-21 19:14:43 +00001#!/usr/bin/python -u
mbligh74fc0462007-11-05 20:24:17 +00002
mbligh96cf0512008-04-17 15:25:38 +00003import os, sys
mblighbc985702007-11-05 20:52:15 +00004
mbligh96cf0512008-04-17 15:25:38 +00005# this is a stub that just execs into parse.py
6mypath = os.path.dirname(os.path.abspath(__file__))
7parse_py = os.path.join(mypath, "parse.py")
mblighbc985702007-11-05 20:52:15 +00008
mbligh96cf0512008-04-17 15:25:38 +00009os.execv(parse_py, [parse_py] + sys.argv[1:])