#!python
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the SG Otio project

import os
import sys
import subprocess

dirname = os.path.dirname(os.path.realpath(sys.argv[0]))
args = [
    sys.executable,
    os.path.join(dirname, "sg-otio.py"),
]
args.extend(sys.argv[1:])
subprocess.call(args)
