https://github.com/web-platform-tests/wpt
Raw File
Tip revision: aa1cdafe011083b507a42701f58134c4e485906e authored by moz-wptsync-bot on 13 March 2018, 19:14:33 UTC
Fix a bunch of typo in the doc
Tip revision: aa1cdaf
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