https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0c2089b71e8f1033fd820c9f762aac6601e731f5 authored by James Graham on 21 March 2018, 22:05:32 UTC
Fix python gitignore for directories.
Tip revision: 0c2089b
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