https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d3cec900217a525b6da759c9194838632f0bf27d authored by Yutaka Hirano on 27 March 2018, 06:25:56 UTC
fix
Tip revision: d3cec90
serve.py
import sys
import logging

try:
    from tools.serve import serve
except ImportError:
    logging.error("tools.serve not found.  Did you forget to run "
                  '"git submodule update --init --recursive"?')
    sys.exit(2)

def main():
    serve.main()
back to top