swh:1:snp:b37d435721bbd450624165f334724e3585346499
Raw File
Tip revision: de277f72555a8613d1d38a9a6df270d16621ac89 authored by Chris Nardi on 29 March 2018, 23:23:28 UTC
Build spec links with short URLs for CSS testsuites
Tip revision: de277f7
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