https://github.com/web-platform-tests/wpt
Revision 041ab0412dfe7eb981ef6aa8de259d118f2b4c70 authored by Yutaka Hirano on 25 April 2018, 06:05:51 UTC, committed by Yutaka Hirano on 25 April 2018, 06:05:51 UTC
1 parent b98931a
Raw File
Tip revision: 041ab0412dfe7eb981ef6aa8de259d118f2b4c70 authored by Yutaka Hirano on 25 April 2018, 06:05:51 UTC
fix
Tip revision: 041ab04
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