https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a6f528f9ff00b8cd4e9526bae531c7eac75702fb authored by Yutaka Hirano on 26 April 2018, 22:52:40 UTC
fix
Tip revision: a6f528f
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