https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b705dc10c1b15a9cf3fa2b1648274f4d70ee1aa2 authored by Ahilya Sinha on 23 March 2018, 13:09:14 UTC
Fixed lint checking directories it shouldn't be (#10147)
Tip revision: b705dc1
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