https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b0a5adb79b683700fb1a3e59dd2632387c506701 authored by Luke Bjerring on 29 March 2018, 17:14:00 UTC
Remove redundant Array.from
Tip revision: b0a5adb
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