Ophis/bin/ophis
Michael Martin 41bf01d035 Convert Ophis to Python 3.
Most of the work is handled by 2to3, but there's a few extra tricks
needed to finish the job, mostly about picking the right bits to be
Unicode and the right bits to be bytes.
2019-01-09 20:45:01 -08:00

11 lines
221 B
Python
Executable File

#!/usr/bin/env python3
from os.path import realpath, dirname, join
from sys import argv, exit, path
path.insert(0, join(dirname(realpath(argv[0])), '..', 'src'))
import Ophis.Main
exit(Ophis.Main.run_ophis(argv[1:]))