Revision 64a99198ac01fe0bb5e166ca590f3b2b48c7d7ef authored by Sam Clegg on 08 November 2018, 23:24:10 UTC, committed by GitHub on 08 November 2018, 23:24:10 UTC
1 parent bbec323
Raw File
emscons
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads the main code using
# python_selector, which may pick a different version.

from tools import python_selector

import sys

if __name__ == '__main__':
  python_selector.run(__file__)
back to top