https://github.com/web-platform-tests/wpt
Revision 6f9aaf638b7e0200ae9ebb434803524257a5616a authored by jkereliuk on 10 April 2018, 17:54:41 UTC, committed by jkereliuk on 10 April 2018, 18:01:21 UTC
1 parent 1e801bf
Raw File
Tip revision: 6f9aaf638b7e0200ae9ebb434803524257a5616a authored by jkereliuk on 10 April 2018, 17:54:41 UTC
added special keys note
Tip revision: 6f9aaf6
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