https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 817b25cbe9ac59483da2c4612bf9729b10c047f9 authored by Luke Bjerring on 09 April 2018, 13:35:03 UTC
Remove debugging mess from web-animations test
Tip revision: 817b25c
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