blob: 8379db347d9496f590faa0a4f3b916093c21e093 [file] [log] [blame]
#!/usr/bin/python -u
import os, sys
# this is a stub that just execs into parse.py
mypath = os.path.dirname(os.path.abspath(__file__))
parse_py = os.path.join(mypath, "parse.py")
os.execv(parse_py, [parse_py] + sys.argv[1:])